summaryrefslogtreecommitdiff
path: root/meta-pkgs
diff options
context:
space:
mode:
authortv <tv>2006-11-10 17:34:09 +0000
committertv <tv>2006-11-10 17:34:09 +0000
commit868e4fe0bcab2dac12495dad2be336c51bbaeb6f (patch)
treed14029e2529c2e6d34dc0be3357cb0bc70b8c46d /meta-pkgs
parent7f1993f0b8cbc2ed434152468751d2c9a1090b4d (diff)
downloadpkgsrc-868e4fe0bcab2dac12495dad2be336c51bbaeb6f.tar.gz
Use find -print | xargs rather than find -exec.
Diffstat (limited to 'meta-pkgs')
-rw-r--r--meta-pkgs/boost/Makefile.common4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-pkgs/boost/Makefile.common b/meta-pkgs/boost/Makefile.common
index 5ba11f02d88..783a596e6ee 100644
--- a/meta-pkgs/boost/Makefile.common
+++ b/meta-pkgs/boost/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.8 2006/06/25 17:06:08 rillig Exp $
+# $NetBSD: Makefile.common,v 1.9 2006/11/10 17:41:13 tv Exp $
#
BOOST_PACKAGE?= undefined
@@ -37,7 +37,7 @@ GCC_REQD+= 3.2 # if using gcc; ignored otherwise
# future timestamp than the sources. If this happens, print-PLIST does
# not work.
pre-configure:
- @cd ${WRKSRC} && ${FIND} . -type f -exec ${TOUCH} {} \;
+ @cd ${WRKSRC} && ${FIND} . -type f -print | ${XARGS} ${TOUCH}
# Generate a new user.hpp or use the installed one, depending on the
# package we are building.