From: Robin Dunn Date: Fri, 26 Oct 2001 05:46:39 +0000 (+0000) Subject: Use the right flags on wx-config X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e8bf92fd9c3356682cdef424d51590107beec3fe Use the right flags on wx-config git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12169 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- 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)