From 2bbabc0647910d6afea914a7c295cfb761ac2423 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 4 Jul 2006 17:22:21 +0000 Subject: [PATCH] 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 --- wxPython/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wxPython/config.py b/wxPython/config.py index 3b2de23850..b212052218 100644 --- a/wxPython/config.py +++ b/wxPython/config.py @@ -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: -- 2.50.0