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/groff/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/groff/Makefile.bsd-wrapper')
-rw-r--r-- | gnu/usr.bin/groff/Makefile.bsd-wrapper | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/usr.bin/groff/Makefile.bsd-wrapper b/gnu/usr.bin/groff/Makefile.bsd-wrapper index d52d59ef71b..a270a5a22f1 100644 --- a/gnu/usr.bin/groff/Makefile.bsd-wrapper +++ b/gnu/usr.bin/groff/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.10 1997/09/05 07:18:35 kstailey Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.11 1998/10/18 20:02:31 millert Exp $ # # groff config @@ -60,11 +60,13 @@ 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=${PREFIX} \ --mandir=${DATASUBDIR}/man ${CF} config.status: + PATH="/bin:/usr/bin:/sbin:/usr/sbin" \ INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \ /bin/sh ${.CURDIR}/configure --prefix=${PREFIX} \ --mandir=${DATASUBDIR}/man ${CF} |