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:
parent
2c12daf99b
commit
dc5bee0a15
@ -102,7 +102,7 @@ jaguarTask = Task( Job(config.OSX_HOST_jaguar,
|
|||||||
pantherTask = Task( Job(config.OSX_HOST_panther,
|
pantherTask = Task( Job(config.OSX_HOST_panther,
|
||||||
["distrib/all/build-osx", CFGFILE, config.OSX_HOST_panther, "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-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-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"]),
|
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
|
# 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.
|
# emails, etc.
|
||||||
finalizationTask = Task( Job("", ["distrib/all/build-finalize", CFGFILE]) )
|
finalizationTask = Task( Job("", ["distrib/all/build-finalize", CFGFILE]) )
|
||||||
|
|
||||||
|
@ -12,6 +12,10 @@ reltag=$4
|
|||||||
shift;shift;shift;shift
|
shift;shift;shift;shift
|
||||||
pyver=$@
|
pyver=$@
|
||||||
|
|
||||||
|
if [ $pyver = config ]; then
|
||||||
|
pyver=$PYVER
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
function TestOnline {
|
function TestOnline {
|
||||||
local host=$1
|
local host=$1
|
||||||
|
Loading…
Reference in New Issue
Block a user