From f9e9ddc7b7ceb79dc66a1c2804721a11045cfbc9 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sat, 2 Apr 2005 03:46:18 +0000 Subject: [PATCH] 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 --- wxPython/distrib/all/do-build-osx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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..." -- 2.50.0