From: Robin Dunn Date: Sat, 2 Apr 2005 03:46:18 +0000 (+0000) Subject: Be able to build with Pythons other than the System version. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f9e9ddc7b7ceb79dc66a1c2804721a11045cfbc9?hp=5cdc74321b1a46af386fb87d8c237b559569b91d Be able to build with Pythons other than the System version. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33253 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/distrib/all/do-build-osx b/wxPython/distrib/all/do-build-osx index 02e7938e2a..b4a82a0223 100755 --- a/wxPython/distrib/all/do-build-osx +++ b/wxPython/distrib/all/do-build-osx @@ -20,7 +20,7 @@ set -o errexit echo "-=-=-=- Hello from $HOSTNAME -=-=-=-" if [ $# -lt 6 ]; then - echo "Usage: $0 WXDIR DESTDIR SKIPCLEAN VERSION KIND PYVER..." + echo "Usage: $0 WXDIR DESTDIR SKIPCLEAN VERSION KIND PYVER" exit 1 fi @@ -29,8 +29,7 @@ DESTDIR=$2 SKIPCLEAN=$3 VERSION=$4 KIND=$5 -shift;shift;shift;shift;shift -PYVER=$@ +PYVER=$6 #export PATH=/sw/bin:/usr/local/bin:$PATH @@ -51,9 +50,9 @@ cd $WXDIR/wxPython export TARBALLDIR=$DESTDIR mkdir -p dist if [ $KIND = panther ]; then - distrib/mac/wxPythonOSX/build $KIND inplace unicode + distrib/mac/wxPythonOSX/build $PYVER $KIND inplace unicode fi -distrib/mac/wxPythonOSX/build $KIND inplace +distrib/mac/wxPythonOSX/build $PYVER $KIND inplace echo "Copying installers to $DESTDIR..."