X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/13a49d66150003980ee7bfb398157502434cfd63..f6d43eda3e8bc5c17cd3c55f037abcc4a4e043be:/wxPython/b.win32 diff --git a/wxPython/b.win32 b/wxPython/b.win32 index 2a3314b115..2059a8a45f 100644 --- a/wxPython/b.win32 +++ b/wxPython/b.win32 @@ -2,17 +2,19 @@ # ---------------------------------------------------------------------- -FLAGS="USE_SWIG=1 SWIG=e:/projects/SWIG-cvs/swig.exe" +FLAGS="USE_SWIG=1 SWIG=$PROJECTS/SWIG-cvs/swig.exe" # Use non-default python? -if [[ "$1" = "15" || "$1" = "20" || "$1" = "21" || "$1" = "22" || "$1" = "23" ]]; then - VER=$1 - PYTHON=$TOOLS/python$1/python.exe - shift -else - echo You must specify the Python version as first parameter. - exit -1 -fi +case $1 in + 21 | 2.1) VER=21; shift ;; + 22 | 2.2) VER=22; shift ;; + 23 | 2.3) VER=23; shift ;; + 24 | 2.4) VER=24; shift ;; + + *) VER=24 +esac + +PYTHON=$TOOLS/python$VER/python.exe SETUP="$PYTHON -u setup.py" $PYTHON -c "import sys;print '\n', sys.version, '\n'" @@ -88,7 +90,7 @@ elif [ "$1" = "b" ]; then $0 $VER $@ $0 $VER h $@ -# (no command arg) --> normal build for development +# (no command arg) --> normal debug build for development else CMD="$SETUP $FLAGS HYBRID=0 build_ext --inplace --debug $@" fi