From 8366ae934aab9f835747b0c2e456231e8795fe78 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 4 Oct 2001 19:16:53 +0000 Subject: [PATCH] Fix for missing -g from wx-config git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11838 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/b | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 -- 2.50.0