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
commit4ca88909e9c383f10c1863d2847228069c00c053 (patch)
treed14029e2529c2e6d34dc0be3357cb0bc70b8c46d /meta-pkgs
parent2f00d2f927ed73bd5fe22281ca5fb3952a8d72b7 (diff)
downloadpkgsrc-4ca88909e9c383f10c1863d2847228069c00c053.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.