From 52cb4ec232c751808625e76445d776c53791bbe1 Mon Sep 17 00:00:00 2001 From: Ruslan Mustakov Date: Wed, 20 Sep 2017 12:57:33 +0700 Subject: [PATCH] Do not compile Recast for Android At least this makes Godot compile for Android until there is a better solution. --- modules/recast/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/recast/config.py b/modules/recast/config.py index fb920482f5f1..d42f07b2a9c9 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):