{android,win32}/build.py: fix missing rename

This commit is contained in:
Max Kellermann
2015-11-20 22:14:10 +01:00
parent 2daa3eb61f
commit 7dad662d69
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ class CrossGccToolchain:
self.cflags = '-O2 -g ' + common_flags
self.cxxflags = '-O2 -g ' + common_flags
self.cppflags = '-isystem ' + os.path.join(install_prefix, 'include')
self.ldflags = '-L' + os.path.join(root_path, 'lib')
self.ldflags = '-L' + os.path.join(install_prefix, 'lib')
self.libs = ''
self.env = dict(os.environ)