From e8bf92fd9c3356682cdef424d51590107beec3fe Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 26 Oct 2001 05:46:39 +0000 Subject: [PATCH] Use the right flags on wx-config git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12169 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wxPython/setup.py b/wxPython/setup.py index 6a9954967b..516529fdce 100755 --- a/wxPython/setup.py +++ b/wxPython/setup.py @@ -247,7 +247,7 @@ elif os.name == 'posix': libdirs = [] libs = [] - cflags = os.popen(WX_CONFIG + ' --cflags', 'r').read()[:-1] + ' ' + \ + cflags = os.popen(WX_CONFIG + ' --cxxflags', 'r').read()[:-1] + ' ' + \ os.popen('gtk-config --cflags', 'r').read()[:-1] cflags = string.split(cflags) -- 2.50.0