From 5ac248264aa0355e5f2c0d7511482b6702af1fc4 Mon Sep 17 00:00:00 2001 From: J Andrew Long Date: Thu, 18 Jul 2019 11:37:07 -0400 Subject: [PATCH] fix string split() call --- platform/android/detect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/android/detect.py b/platform/android/detect.py index 8e0ecc050d..a40c1b8ce2 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -264,7 +264,7 @@ def configure(env): env.Append(LINKFLAGS=['-shared', '--sysroot=' + lib_sysroot, '-Wl,--warn-shared-textrel']) if env["android_arch"] == "armv7": - env.Append(LINKFLAGS=string.split('-Wl,--fix-cortex-a8')) + env.Append(LINKFLAGS='-Wl,--fix-cortex-a8'.split()) env.Append(LINKFLAGS='-Wl,--no-undefined -Wl,-z,noexecstack -Wl,-z,relro -Wl,-z,now'.split()) env.Append(LINKFLAGS='-Wl,-soname,libgodot_android.so -Wl,--gc-sections'.split())