]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/b
added missing generic include file
[wxWidgets.git] / 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