diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-10-18 20:02:37 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-10-18 20:02:37 +0000 |
commit | d5edb539bab16e3d4e8fe30ae3f821747031a447 (patch) | |
tree | 277a6b6557a0a5dca0ffb1633c23e959b8595ac0 /gnu/usr.bin/cvs/Makefile.bsd-wrapper | |
parent | 1b521a89fb375b89ea9dd992de1dc3a1a8f70c74 (diff) |
set PATH before running configure since we can't rely on the user's path being sane
Diffstat (limited to 'gnu/usr.bin/cvs/Makefile.bsd-wrapper')
-rw-r--r-- | gnu/usr.bin/cvs/Makefile.bsd-wrapper | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/usr.bin/cvs/Makefile.bsd-wrapper b/gnu/usr.bin/cvs/Makefile.bsd-wrapper index 15e9b5c3587..14b1206317b 100644 --- a/gnu/usr.bin/cvs/Makefile.bsd-wrapper +++ b/gnu/usr.bin/cvs/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.28 1998/08/24 19:35:35 kstailey Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.29 1998/10/18 20:02:29 millert Exp $ .include <bsd.own.mk> @@ -28,10 +28,12 @@ CF= config: .FORCE -rm -f config.cache + PATH="/bin:/usr/bin:/sbin:/usr/sbin" \ INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \ sh ${.CURDIR}/configure --prefix=/usr ${KRB} ${CF} config.status: + PATH="/bin:/usr/bin:/sbin:/usr/sbin" \ INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \ sh ${.CURDIR}/configure --prefix=/usr ${KRB} ${CF} |