diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-09-27 16:27:24 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-09-27 16:27:24 +0000 |
commit | af458bf93bd13358db572577dfd3845e1c845f44 (patch) | |
tree | f7db4deaefcc3b00d4c2c2a819c667428352c41c /usr.sbin/httpd/Makefile.bsd-wrapper | |
parent | 0626736c105a008c1da3d4379443cdb4d0e27054 (diff) |
use xargs -r0 for our build process
Diffstat (limited to 'usr.sbin/httpd/Makefile.bsd-wrapper')
-rw-r--r-- | usr.sbin/httpd/Makefile.bsd-wrapper | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/httpd/Makefile.bsd-wrapper b/usr.sbin/httpd/Makefile.bsd-wrapper index ae04339bac6..d1426766405 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.56 2005/09/26 21:14:30 pedro Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.57 2005/09/27 16:27:22 deraadt Exp $ # Our lndir is hacked; specify a full path to avoid potential conflicts # with the one installed with X11. @@ -709,7 +709,7 @@ clean: prereq cleanman @cd ${.OBJDIR} && ${MAKE} clean && rm -f ${MUNGEDFILES} .else clean: cleanman - @cd ${.OBJDIR} && find . \! -type d -print | xargs -r rm + @cd ${.OBJDIR} && find . \! -type d -print0 | xargs -0r rm .endif cleandir: clean |