]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix for missing -g from wx-config
authorRobin Dunn <robin@alldunn.com>
Thu, 4 Oct 2001 19:16:53 +0000 (19:16 +0000)
committerRobin Dunn <robin@alldunn.com>
Thu, 4 Oct 2001 19:16:53 +0000 (19:16 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11838 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/b

index cd240e9772fb687b17a6d412e0d83edcba959ebf..1b9e33f442c223bd06af05b700d8e35bb5911827 100755 (executable)
@@ -98,9 +98,14 @@ elif [ "$1" = "r" ]; then
     exit 0
 
 
+# "f" --> FINAL (no debug)
+elif [ "$1" = "f" ]; then
+    shift
+    CMD="$SETUP $FLAGS $OTHERFLAGS build_ext --inplace $*"
+
 # (no command arg) --> normal build for development
 else
-    CMD="$SETUP $FLAGS $OTHERFLAGS build_ext --inplace $*"
+    CMD="$SETUP $FLAGS $OTHERFLAGS build_ext --inplace --debug $*"
 fi