summaryrefslogtreecommitdiff
path: root/platform/android/detect.py
diff options
context:
space:
mode:
authorTiago Quendera <tiagoquendera@gmail.com>2018-08-17 12:08:17 +0100
committerGitHub <noreply@github.com>2018-08-17 12:08:17 +0100
commitaa594614db4087be68be5c991155795a804eb146 (patch)
tree0e0cb146f5496dac427de38909994566f6b07fbc /platform/android/detect.py
parent1f65ed6a7d91a9882fd79e7cae80c923e0f96133 (diff)
Update detect.py
Fixed a typo in detect.py
Diffstat (limited to 'platform/android/detect.py')
-rw-r--r--platform/android/detect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/detect.py b/platform/android/detect.py
index ada36e2814..0c6c9fdca3 100644
--- a/platform/android/detect.py
+++ b/platform/android/detect.py
@@ -128,7 +128,7 @@ def configure(env):
env.extra_suffix = ".armv7" + env.extra_suffix
elif env["android_arch"] == "arm64v8":
if get_platform(env["ndk_platform"]) < 21:
- print("WARNING: android_arch=arm64v8 is not supported by ndk_platform lower than andorid-21; setting ndk_platform=android-21")
+ print("WARNING: android_arch=arm64v8 is not supported by ndk_platform lower than android-21; setting ndk_platform=android-21")
env["ndk_platform"] = "android-21"
env['ARCH'] = 'arch-arm64'
target_subpath = "aarch64-linux-android-4.9"