From: Robin Dunn <robin@alldunn.com>
Date: Thu, 4 Oct 2001 19:16:53 +0000 (+0000)
Subject: Fix for missing -g from wx-config
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/8366ae934aab9f835747b0c2e456231e8795fe78

Fix for missing -g from wx-config


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11838 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---

diff --git a/wxPython/b b/wxPython/b
index cd240e9772..1b9e33f442 100755
--- a/wxPython/b
+++ b/wxPython/b
@@ -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