Bumping the arg numbers since we now don't have a CFGFILE as first argument.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37745 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Kevin Ollivier 2006-02-27 05:06:06 +00:00
parent f1a9f3318b
commit d3c518f985
3 changed files with 8 additions and 8 deletions

View File

@ -7,9 +7,9 @@ set -o errexit
# . $1 # . $1
host=$2 host=$1
flavor=$3 flavor=$2
pyver=$4 pyver=$3
if [ $skiposx != yes ]; then if [ $skiposx != yes ]; then
# test if the target machine is online # test if the target machine is online

View File

@ -6,10 +6,10 @@ set -o errexit
# read the config variables from the file given on the command line # read the config variables from the file given on the command line
# . $1 # . $1
coHost=$2 coHost=$1
host=$3 host=$2
reltag=$4 reltag=$3
shift;shift;shift;shift shift;shift;shift
pyver=$@ pyver=$@
if [ $pyver = config ]; then if [ $pyver = config ]; then

View File

@ -6,7 +6,7 @@ set -o errexit
# read the config variables from the file given on the command line # read the config variables from the file given on the command line
# . $1 # . $1
PYVER=$2 PYVER=$1
if [ $skipwin != yes ]; then if [ $skipwin != yes ]; then
# test if the target machine is online # test if the target machine is online