diff options
author | asami <asami@FreeBSD.org> | 2000-08-29 16:04:13 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 2000-08-29 16:04:13 +0800 |
commit | a5aff9ad0624d82b7cf30447d00b7cce2334f783 (patch) | |
tree | 304e9399fca8e6b8243c502057c9d46e62c889ad /Tools | |
parent | df2b9dd511d70f11ddfba50263d845dfa80affc9 (diff) | |
download | freebsd-ports-gnome-a5aff9ad0624d82b7cf30447d00b7cce2334f783.tar.gz freebsd-ports-gnome-a5aff9ad0624d82b7cf30447d00b7cce2334f783.tar.zst freebsd-ports-gnome-a5aff9ad0624d82b7cf30447d00b7cce2334f783.zip |
Add branch=5 case and update some variables. Don't set NO_RESTRICTED,
this will be passed down by calling scripts if necessary.
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/makeduds | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/Tools/portbuild/scripts/makeduds b/Tools/portbuild/scripts/makeduds index f7f2aa1104ca..eedf0db6cf60 100755 --- a/Tools/portbuild/scripts/makeduds +++ b/Tools/portbuild/scripts/makeduds @@ -21,14 +21,20 @@ case "x$1" in x3) branch=3 export PORTOBJFORMAT=elf - # export OSREL=3.3 - # export OSVERSION=330000 + export OSREL=3.5 + export OSVERSION=350001 ;; x4) branch=4 export PORTOBJFORMAT=elf - export OSREL=4.0 - export OSVERSION=400009 + # export OSREL=4.0 + # export OSVERSION=400018 + ;; + x5) + branch=5 + export PORTOBJFORMAT=elf + export OSREL=5.0 + export OSVERSION=500011 ;; *) usage @@ -43,7 +49,7 @@ export BATCH=t export HAVE_MOTIF=t export PACKAGE_BUILDING=t export PARALLEL_PACKAGE_BUILD=t -export NO_RESTRICTED=t +#export NO_RESTRICTED=t #export FOR_CDROM=t make -j${DUDSJOBS} ignorelist ECHO_MSG=true > ${duds} || exit 1 sort ${duds} > ${duds}.tmp |