diff options
Diffstat (limited to 'Tools/portbuild/scripts/makeduds')
-rwxr-xr-x | Tools/portbuild/scripts/makeduds | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/Tools/portbuild/scripts/makeduds b/Tools/portbuild/scripts/makeduds index 5b77f355f9a3..914d865d7957 100755 --- a/Tools/portbuild/scripts/makeduds +++ b/Tools/portbuild/scripts/makeduds @@ -27,14 +27,20 @@ case "x$1" in x4) branch=4 export PORTOBJFORMAT=elf - export OSREL=4.3 - export OSVERSION=430000 + export OSREL=4.5 + export OSVERSION=450000 + ;; + x4-exp) + branch=4-exp + export PORTOBJFORMAT=elf + export OSREL=4.5 + export OSVERSION=450000 ;; x5) branch=5 export PORTOBJFORMAT=elf export OSREL=5.0 - export OSVERSION=500017 + export OSVERSION=500027 ;; *) usage @@ -56,6 +62,7 @@ export BATCH=t export HAVE_MOTIF=t export PACKAGE_BUILDING=t export PARALLEL_PACKAGE_BUILD=t +export SRCBASE=/var/portbuild/${branch}/src #export NO_RESTRICTED=t #export FOR_CDROM=t make -j${DUDSJOBS} ignorelist ECHO_MSG=true > ${duds} || exit 1 |