diff options
author | Max Kellermann <max@duempel.org> | 2015-11-20 22:14:10 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-11-20 22:14:11 +0100 |
commit | 7dad662d690cc1c374009bbcd0df03bccb8f9ad7 (patch) | |
tree | eeef8bce54b87cc0bb279a5de328f186ce08b611 /android | |
parent | 2daa3eb61f7649ccdbdb056523920db9227731fe (diff) |
{android,win32}/build.py: fix missing rename
Diffstat (limited to 'android')
-rwxr-xr-x | android/build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/build.py b/android/build.py index 4f58590a8..04af2a0f4 100755 --- a/android/build.py +++ b/android/build.py @@ -87,7 +87,7 @@ class AndroidNdkToolchain: self.cflags = '-Os -g ' + common_flags self.cxxflags = '-Os -g ' + common_flags self.cppflags = '--sysroot=' + self.sysroot + ' -isystem ' + os.path.join(install_prefix, 'include') - self.ldflags = '--sysroot=' + self.sysroot + ' -L' + os.path.join(root_path, 'lib') + self.ldflags = '--sysroot=' + self.sysroot + ' -L' + os.path.join(install_prefix, 'lib') self.libs = '' libstdcxx_path = os.path.join(ndk_path, 'sources/cxx-stl/gnu-libstdc++', gcc_version) |