diff options
author | kris <kris@FreeBSD.org> | 2005-01-07 07:10:53 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2005-01-07 07:10:53 +0800 |
commit | ac58789ff612b51512dc9511e7a7116c6e0e1bfa (patch) | |
tree | dc060232390a3ca02962edf1e32fce5c6dc8242c /Tools | |
parent | b226c95b270f8533206c3f5689fcec733d9ff9b7 (diff) | |
download | freebsd-ports-gnome-ac58789ff612b51512dc9511e7a7116c6e0e1bfa.tar.gz freebsd-ports-gnome-ac58789ff612b51512dc9511e7a7116c6e0e1bfa.tar.zst freebsd-ports-gnome-ac58789ff612b51512dc9511e7a7116c6e0e1bfa.zip |
Unset the __MAKE_CONF variable after setting up buildenv, because we
want to use the default value in the build chroot.
Approved by: portmgr (self)
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/portbuild | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Tools/portbuild/scripts/portbuild b/Tools/portbuild/scripts/portbuild index 05825f612627..50effd8234ad 100755 --- a/Tools/portbuild/scripts/portbuild +++ b/Tools/portbuild/scripts/portbuild @@ -142,6 +142,9 @@ RD=$5 buildenv ${pb} ${arch} ${branch} +# Want to use the /etc/make.conf in the chroot +unset __MAKE_CONF + pkgname=$(basename $6 ${PKGSUFFIX}) dirname=$7 shift 2 |