Fix typo that caused a global variable to be used instead of the local

function parameter


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39979 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2006-07-04 17:22:21 +00:00
parent 239ef31452
commit 2bbabc0647

View File

@ -574,7 +574,7 @@ def adjustCFLAGS(cflags, defines, includes):
def adjustLFLAGS(lfags, libdirs, libs):
def adjustLFLAGS(lflags, libdirs, libs):
'''Extract the -L and -l flags and put them in libdirs and libs as needed'''
newLFLAGS = []
for flag in lflags: