diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-11-06 20:42:06 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-11-06 20:42:06 +0000 |
commit | 369a461e18abce9597c280f30e1126c1c831393b (patch) | |
tree | 12ea15ccc7acbe743a952190b9eb6fade01e19b7 /usr.sbin | |
parent | 573c8919596f6856ca9fde8bdc6c0259db1e8c9b (diff) |
Set PATH before running Configure
Diffstat (limited to 'usr.sbin')
-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: |