diff options
author | Satoshi Asami <asami@FreeBSD.org> | 2000-10-06 07:29:56 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 2000-10-06 07:29:56 +0000 |
commit | e93b21fc8963073bb01928b07b4e0642abaa62e3 (patch) | |
tree | 25cb4c821ca06c3873286af9885cedb5b3eee1e6 /Tools/portbuild | |
parent | e622242e78679fd9ecbe84feba98bf9b7ca0c036 (diff) |
Notes
Diffstat (limited to 'Tools/portbuild')
-rwxr-xr-x | Tools/portbuild/scripts/portbuild | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Tools/portbuild/scripts/portbuild b/Tools/portbuild/scripts/portbuild index 94d410d0f410..dc4e2b9cf6c9 100755 --- a/Tools/portbuild/scripts/portbuild +++ b/Tools/portbuild/scripts/portbuild @@ -73,24 +73,26 @@ if [ "x$1" = "x-nodummy" ]; then shift fi +# these should not be necessary because OSREL is +# set in bsd.port.mk from uname's output case ${branch} in 5*) - export OSREL=5.0 +# export OSREL=5.0 export OSVERSION=500011 # export PORTOBJFORMAT=elf ;; 4*) - # export OSREL=4.0 - # export OSVERSION=400018 + # export OSREL=4.1 + # export OSVERSION=410002 # export PORTOBJFORMAT=elf ;; 3*) - export OSREL=3.5 +# export OSREL=3.5 export OSVERSION=350001 # export PORTOBJFORMAT=elf ;; *) - export OSREL=2.2.8 +# export OSREL=2.2.8 export OSVERSION=228001 export PORTOBJFORMAT=aout ;; |