diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-12-10 20:45:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-10 20:45:49 +0100 |
commit | 0fba151446fe077e2b732812bbd70d0383b9558b (patch) | |
tree | 4252f0d95d1489b372d5bf663ea80753a05a5977 /platform/android/detect.py | |
parent | b46ab89675aef026650085c751a00cc47f8aa57e (diff) | |
parent | 368c0bc0acfe4621f21195193633bf7f28cbd4a7 (diff) |
Merge pull request #55792 from aaronfranke/misc
Diffstat (limited to 'platform/android/detect.py')
-rw-r--r-- | platform/android/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/detect.py b/platform/android/detect.py index 6f98dab2cc..3319d5890c 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -152,7 +152,7 @@ def configure(env): abi_subpath = "i686-linux-android" arch_subpath = "x86" env["x86_libtheora_opt_gcc"] = True - if env["android_arch"] == "x86_64": + elif env["android_arch"] == "x86_64": if get_platform(env["ndk_platform"]) < 21: print( "WARNING: android_arch=x86_64 is not supported by ndk_platform lower than android-21; setting" |