diff options
author | jkh <jkh@FreeBSD.org> | 1998-01-27 21:28:32 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1998-01-27 21:28:32 +0000 |
commit | 83e933cd3850f7f20d75faff727b5d0b256cc5d1 (patch) | |
tree | 606ff440441ecabeb80acef226abf4a953034408 /release/Makefile | |
parent | 8b20894f667aa96d87cccfb7987f984dfbbf40d9 (diff) | |
download | FreeBSD-src-83e933cd3850f7f20d75faff727b5d0b256cc5d1.zip FreeBSD-src-83e933cd3850f7f20d75faff727b5d0b256cc5d1.tar.gz |
Tweak PATH for ports build. I have no idea why this worked on my test
machine but not on the -current build box.
Diffstat (limited to 'release/Makefile')
-rw-r--r-- | release/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/release/Makefile b/release/Makefile index 353340c..0c7d8af 100644 --- a/release/Makefile +++ b/release/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.336 1998/01/24 07:30:55 jkh Exp $ +# $Id: Makefile,v 1.337 1998/01/27 01:06:49 jkh Exp $ # # make release CHROOTDIR=/some/dir BUILDNAME=somename [ RELEASETAG=tag ] # @@ -532,7 +532,8 @@ cdrom.1: doc.1: for i in ${DOCPORTS}; do \ - (cd /usr/ports/$$i; make all install clean FORCE_PKG_REGISTER=yes); \ + cd /usr/ports/$$i && make all install clean \ + FORCE_PKG_REGISTER=yes PATH=$PATH:/usr/local/bin; \ done cd /usr/doc && make all distribute DISTDIR=${RD}/trees |