diff options
author | Bob Beck <beck@cvs.openbsd.org> | 1999-03-08 17:42:43 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 1999-03-08 17:42:43 +0000 |
commit | d911077916c7b252d190f44f64b8cc298966dac7 (patch) | |
tree | f36b2e2da5cb8acb55e425a6d19ba93b03cfa953 /usr.sbin/httpd | |
parent | 8ed092462c27fb7138046c3a86a65a11144ff7fd (diff) |
Fix stupid apache Configure date sillyness here - hopefully avoiding another resurfacing.
Diffstat (limited to 'usr.sbin/httpd')
-rw-r--r-- | usr.sbin/httpd/src/Makefile.bsd-wrapper | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/httpd/src/Makefile.bsd-wrapper b/usr.sbin/httpd/src/Makefile.bsd-wrapper index a3a67551eb7..7de03ccf79a 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.11 1998/12/15 00:34:13 deraadt Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.12 1999/03/08 17:42:42 beck Exp $ .include <bsd.own.mk> PROG=httpd BINDIR=/usr/sbin @@ -15,6 +15,7 @@ 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 + touch ${.OBJDIR}/Configuration PATH="/bin:/usr/bin:/sbin:/usr/sbin" \ CC="${CC}" CFLAGS="${CFLAGS}" \ sh ${.CURDIR}/Configure -file ${.OBJDIR}/Configuration -make ${.CURDIR}/Makefile.tmpl @@ -27,6 +28,7 @@ Makefile: helpers/GuessOS test -x ${.CURDIR}/helpers/$$f || \ chmod +x ${.CURDIR}/helpers/$$f ; \ done + touch ${.OBJDIR}/Configuration PATH="/bin:/usr/bin:/sbin:/usr/sbin" \ CC="${CC}" CFLAGS="${CFLAGS}" \ sh ${.CURDIR}/Configure -file ${.OBJDIR}/Configuration -make ${.CURDIR}/Makefile.tmpl @@ -40,6 +42,7 @@ clean cleandir: .endif /bin/rm -f Makefile /bin/rm -f modules/standard/Makefile + /bin/rm -f modules/ssl/Makefile /bin/rm -f modules/Makefile /bin/rm -f support/Makefile /bin/rm -f main/Makefile |