]> git.saurik.com Git - wxWidgets.git/commitdiff
Use the right flags on wx-config
authorRobin Dunn <robin@alldunn.com>
Fri, 26 Oct 2001 05:46:39 +0000 (05:46 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 26 Oct 2001 05:46:39 +0000 (05:46 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12169 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/setup.py

index 6a9954967bf7080354d08973726824eb4aa7475c..516529fdce93f880dfc65a755ca17d16d4ccfaa3 100755 (executable)
@@ -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)