aboutsummaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2003-02-14 09:24:36 +0000
committerKris Kennaway <kris@FreeBSD.org>2003-02-14 09:24:36 +0000
commitafda0ec7a910b8de8f8690772f8caa7c896ff907 (patch)
tree98ed9b1da5a981a2967bc3f9135e337ce18fbb0b /Tools
parent1186c9d3255a5a7e7bdf6d4495d7c526e3c62451 (diff)
downloadports-afda0ec7a910b8de8f8690772f8caa7c896ff907.tar.gz
ports-afda0ec7a910b8de8f8690772f8caa7c896ff907.zip
- 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-xTools/portbuild/scripts/makeworld9
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