diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-09-20 09:31:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-20 09:31:03 +0200 |
commit | f5c15018ac3660e83e98b2d9708fab1c00ec6eb3 (patch) | |
tree | b042f0027f3b92bd44d37dc96c2fbee02a950de1 | |
parent | 96882c72240361e20dfeb55b9bb23560a27d995b (diff) | |
parent | 52cb4ec232c751808625e76445d776c53791bbe1 (diff) |
Merge pull request #11434 from endragor/disable-recast-android
Do not compile Recast for Android
[ci skip]
-rw-r--r-- | modules/recast/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/recast/config.py b/modules/recast/config.py index fb920482f5..d42f07b2a9 100644 --- a/modules/recast/config.py +++ b/modules/recast/config.py @@ -1,6 +1,6 @@ def can_build(platform): - return True + return platform != "android" def configure(env): |