diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2003-02-14 09:24:36 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2003-02-14 09:24:36 +0000 |
commit | afda0ec7a910b8de8f8690772f8caa7c896ff907 (patch) | |
tree | 98ed9b1da5a981a2967bc3f9135e337ce18fbb0b /Tools | |
parent | Update to 0.4.5 and fix build. (diff) |
- Correct usage message
- Don't try and use buildenv, it's useless
- Set TARGET_ARCH instead
Notes
Notes:
svn path=/head/; revision=75493
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/makeworld | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Tools/portbuild/scripts/makeworld b/Tools/portbuild/scripts/makeworld index 1df424003fc1..5a219e0e93a6 100755 --- a/Tools/portbuild/scripts/makeworld +++ b/Tools/portbuild/scripts/makeworld @@ -3,7 +3,7 @@ pb=/var/portbuild if [ $# -lt 2 ]; then - echo "usage: makeparallel arch branch [args]" + echo "usage: makeworld arch branch [args]" exit 1 fi @@ -12,13 +12,8 @@ branch=$2 shift 2 . ${pb}/${arch}/portbuild.conf -. ${pb}/scripts/buildenv -buildenv ${pb} ${arch} ${branch} - -# These confuse make world; remove them -unset MACHINE_ARCH -unset ARCH +export TARGET_ARCH=${arch} client=0 nocvs=0 |