Can't use the config.PYVER value if it hasn't been set yet...

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30382 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2004-11-09 03:40:11 +00:00
parent 2c12daf99b
commit dc5bee0a15
2 changed files with 6 additions and 2 deletions

View File

@ -102,7 +102,7 @@ jaguarTask = Task( Job(config.OSX_HOST_jaguar,
pantherTask = Task( Job(config.OSX_HOST_panther,
["distrib/all/build-osx", CFGFILE, config.OSX_HOST_panther, "panther"]) )
rpmTask = Task([ Job("co-rh9", ["distrib/all/build-rpm", CFGFILE, "beast", "co-rh9", "rh9", config.PYVER]),
rpmTask = Task([ Job("co-rh9", ["distrib/all/build-rpm", CFGFILE, "beast", "co-rh9", "rh9", "config"]),
Job("co-fc2", ["distrib/all/build-rpm", CFGFILE, "beast", "co-fc2", "fc2", "2.3"]),
Job("co-mdk92", ["distrib/all/build-rpm", CFGFILE, "beast", "co-mdk92", "mdk92", "2.3"]),
Job("co-mdk101", ["distrib/all/build-rpm", CFGFILE, "beast", "co-mdk101","mdk101","2.3"]),
@ -115,7 +115,7 @@ buildTasks = [ windowsTask,
]
# Finalization. This is for things that must wait until all the
# builds are done, such as copying the isntallers someplace, sending
# builds are done, such as copying the installers someplace, sending
# emails, etc.
finalizationTask = Task( Job("", ["distrib/all/build-finalize", CFGFILE]) )

View File

@ -12,6 +12,10 @@ reltag=$4
shift;shift;shift;shift
pyver=$@
if [ $pyver = config ]; then
pyver=$PYVER
fi
function TestOnline {
local host=$1