summaryrefslogtreecommitdiff
path: root/platform/android
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-08-18 15:01:06 +0200
committerGitHub <noreply@github.com>2018-08-18 15:01:06 +0200
commit5acb309d61d868b9501a33c803e612e5a0a1d90c (patch)
tree4ffb91c73df0ba412adb158adc87a61159cb8da7 /platform/android
parent461d1bcb80b3b0b2fcb6f0388702843555071016 (diff)
parentaa594614db4087be68be5c991155795a804eb146 (diff)
Merge pull request #21115 from quendera/quendera-typo
Fixed typo in detect.py
Diffstat (limited to 'platform/android')
-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"