diff options
author | 1998-11-06 20:42:05 +0000 | |
---|---|---|
committer | 1998-11-06 20:42:05 +0000 | |
commit | 68f0434fa2d2d78d3316ef013c9045b21b646532 (patch) | |
tree | a292f72e567e17d86ea38da306b083e05e57ae4c | |
parent | Support for RealTek 8019 and 8029 NE2000-compatible network interfaces. (diff) | |
download | wireguard-openbsd-68f0434fa2d2d78d3316ef013c9045b21b646532.tar.xz wireguard-openbsd-68f0434fa2d2d78d3316ef013c9045b21b646532.zip |
Set PATH before running Configure
-rw-r--r-- | usr.sbin/httpd/src/Makefile.bsd-wrapper | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/httpd/src/Makefile.bsd-wrapper b/usr.sbin/httpd/src/Makefile.bsd-wrapper index 9f02e26249c..ab4fa85b978 100644 --- a/usr.sbin/httpd/src/Makefile.bsd-wrapper +++ b/usr.sbin/httpd/src/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.8 1998/10/10 18:33:45 beck Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.9 1998/11/06 20:42:05 millert Exp $ .include <bsd.own.mk> PROG=httpd BINDIR=/usr/sbin @@ -15,9 +15,11 @@ helpers/GuessOS: /usr/bin/lndir -s -e Makefile.bsd-wrapper -e obj -e obj.${MACHINE_ARCH} -e Configuration ${.CURDIR} ${.OBJDIR}; cp ${.CURDIR}/Configuration ${.OBJDIR}/Configuration config: .FORCE + PATH="/bin:/usr/bin:/sbin:/usr/sbin" \ sh ${.CURDIR}/Configure -file ${.OBJDIR}/Configuration -make ${.CURDIR}/Makefile.tmpl Makefile: helpers/GuessOS + PATH="/bin:/usr/bin:/sbin:/usr/sbin" \ sh ${.CURDIR}/Configure -file ${.OBJDIR}/Configuration -make ${.CURDIR}/Makefile.tmpl install: |