diff options
author | kris <kris@FreeBSD.org> | 2003-02-14 17:24:36 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2003-02-14 17:24:36 +0800 |
commit | 626533532f707e13ef2584d3be2f21d543868b17 (patch) | |
tree | 6152dd42b23c91c565fdcf78745ede3a23a8695e /Tools/portbuild | |
parent | 9cf398059ba90376b2188c73ec6ef0c48c08dc5a (diff) | |
download | freebsd-ports-gnome-626533532f707e13ef2584d3be2f21d543868b17.tar.gz freebsd-ports-gnome-626533532f707e13ef2584d3be2f21d543868b17.tar.zst freebsd-ports-gnome-626533532f707e13ef2584d3be2f21d543868b17.zip |
- Correct usage message
- Don't try and use buildenv, it's useless
- Set TARGET_ARCH instead
Diffstat (limited to 'Tools/portbuild')
-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 |