summaryrefslogtreecommitdiff
path: root/meta-pkgs
diff options
context:
space:
mode:
authortv <tv@pkgsrc.org>2006-11-10 17:34:09 +0000
committertv <tv@pkgsrc.org>2006-11-10 17:34:09 +0000
commit25a40248061d30e97c0e11465713e8ddca785bf3 (patch)
treed14029e2529c2e6d34dc0be3357cb0bc70b8c46d /meta-pkgs
parenta6c32dca6a7158a79290c52ed95715aa3a0ee5f4 (diff)
downloadpkgsrc-25a40248061d30e97c0e11465713e8ddca785bf3.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.