diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2005-01-06 23:10:53 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2005-01-06 23:10:53 +0000 |
commit | 7e26c3751bc54f8a4fcadc1382aaef6e6e8e2b2a (patch) | |
tree | c6f433c1abdaf95027eed1ef1e29f9a0558de4c5 /Tools | |
parent | db37071d1d2de1c4e6318d83ee0096f893a1016e (diff) | |
download | ports-7e26c3751bc54f8a4fcadc1382aaef6e6e8e2b2a.tar.gz ports-7e26c3751bc54f8a4fcadc1382aaef6e6e8e2b2a.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)
Notes
Notes:
svn path=/head/; revision=125739
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 |