diff options
author | 2007-02-19 14:50:20 +0000 | |
---|---|---|
committer | 2007-02-19 14:50:20 +0000 | |
commit | 648fd0920bbb32b90a4976c283daed80249af131 (patch) | |
tree | 3d1eb7ea7f0d3b09a3607cf2d11a13ef18c2ab1d | |
parent | tweak; (diff) | |
download | wireguard-openbsd-648fd0920bbb32b90a4976c283daed80249af131.tar.xz wireguard-openbsd-648fd0920bbb32b90a4976c283daed80249af131.zip |
unbreak by allowing clean in !objdir case to fail (no Makefile there in that
case), ok espie, also noticed by simon
-rw-r--r-- | usr.sbin/httpd/Makefile.bsd-wrapper | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/httpd/Makefile.bsd-wrapper b/usr.sbin/httpd/Makefile.bsd-wrapper index f397f88256d..95d33ee620b 100644 --- a/usr.sbin/httpd/Makefile.bsd-wrapper +++ b/usr.sbin/httpd/Makefile.bsd-wrapper @@ -1,5 +1,5 @@ # Build wrapper for Apache -# $OpenBSD: Makefile.bsd-wrapper,v 1.60 2007/02/13 00:37:24 espie Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.61 2007/02/19 14:50:20 henning Exp $ # Our lndir is hacked; specify a full path to avoid potential conflicts # with the one installed with X11. @@ -703,8 +703,8 @@ install: maninstall .if ${.OBJDIR} == ${.CURDIR} clean: cleanman - @cd ${.OBJDIR} && ${MAKE} clean && rm -f ${MUNGEDFILES} -.else + -@cd ${.OBJDIR} && rm -f ${MUNGEDFILES} && ${MAKE} clean +.else clean: cleanman @cd ${.OBJDIR} && find . \! -type d -print0 | xargs -0r rm .endif |