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/texinfo | |
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/texinfo')
-rw-r--r-- | gnu/usr.bin/texinfo/Makefile.bsd-wrapper | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/usr.bin/texinfo/Makefile.bsd-wrapper b/gnu/usr.bin/texinfo/Makefile.bsd-wrapper index f18daf36229..660b166715c 100644 --- a/gnu/usr.bin/texinfo/Makefile.bsd-wrapper +++ b/gnu/usr.bin/texinfo/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.24 1997/09/05 19:53:23 flipk Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.25 1998/10/18 20:02:35 millert Exp $ INFODIR= infodir=${DESTDIR}/usr/share/info INFOPATH= DEFAULT_INFOPATH=/usr/local/info:/usr/share/info:. @@ -28,10 +28,12 @@ config: .FORCE .ifndef GLOBAL_AUTOCONF_CACHE -rm -f config.cache .endif + PATH="/bin:/usr/bin:/sbin:/usr/sbin" \ INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \ /bin/sh ${.CURDIR}/configure --prefix=/usr ${CF} config.status: + PATH="/bin:/usr/bin:/sbin:/usr/sbin" \ INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \ /bin/sh ${.CURDIR}/configure --prefix=/usr ${CF} |