Module Name: src
Committed By: hans
Date: Tue Jun 19 21:48:34 UTC 2012
Modified Files:
src/tools: Makefile.gnuhost
Log Message:
Don't use -print0/-0 in find | xargs, it is non-standard and not needed at all.
To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 src/tools/Makefile.gnuhost
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tools/Makefile.gnuhost
diff -u src/tools/Makefile.gnuhost:1.38 src/tools/Makefile.gnuhost:1.39
--- src/tools/Makefile.gnuhost:1.38 Wed Apr 18 11:28:30 2012
+++ src/tools/Makefile.gnuhost Tue Jun 19 21:48:33 2012
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.gnuhost,v 1.38 2012/04/18 11:28:30 tsutsui Exp $
+# $NetBSD: Makefile.gnuhost,v 1.39 2012/06/19 21:48:33 hans Exp $
#
# Rules used when building a GNU host package. Expects MODULE to be set.
#
@@ -103,7 +103,7 @@ CONFIGURE_PLATFORM!= if [ -s .configure_
configure_cleanup:
@mkdir build 2>/dev/null || true
@(echo "Cleaning stale cache files ${BUILD_PLATFORM} != ${CONFIGURE_PLATFORM}")
- @(cd build && find . -name config.cache -print0 | xargs -0 rm -f)
+ @(cd build && find . -name config.cache | xargs rm -f)
configure_cleanup=configure_cleanup
.endif