summaryrefslogtreecommitdiff
path: root/devel/mit-pthreads
diff options
context:
space:
mode:
authorjlam <jlam>2001-05-19 03:56:23 +0000
committerjlam <jlam>2001-05-19 03:56:23 +0000
commit14497c4e54ef93397c94971e740cfbe73dd7b82e (patch)
tree35829def2637f8f91ecdb3daaeecb1424685adf2 /devel/mit-pthreads
parentdb59d15cac4efb5a3898cfd6e08a83dc22ac43ac (diff)
downloadpkgsrc-14497c4e54ef93397c94971e740cfbe73dd7b82e.tar.gz
Use ${XARGS} instead of invoking xargs directly.
Diffstat (limited to 'devel/mit-pthreads')
-rw-r--r--devel/mit-pthreads/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/devel/mit-pthreads/Makefile b/devel/mit-pthreads/Makefile
index a0fadd2ff5e..6d8f3ca708d 100644
--- a/devel/mit-pthreads/Makefile
+++ b/devel/mit-pthreads/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.32 2001/04/11 16:21:21 skrll Exp $
+# $NetBSD: Makefile,v 1.33 2001/05/19 03:56:33 jlam Exp $
#
DISTNAME= pthreads-1_60_beta6
@@ -36,9 +36,9 @@ pre-install:
post-install:
@${RM} -f ${PREFIX}/pthreads/lib/libpthread_pic.a
- @${FIND} ${PREFIX}/pthreads/include -name '*.orig'|xargs ${RM}
- @${FIND} ${PREFIX}/pthreads/include -type f -print|xargs ${CHMOD} 644
- @${FIND} ${PREFIX}/pthreads/include -type d -print|xargs ${CHMOD} 755
+ @${FIND} ${PREFIX}/pthreads/include -name '*.orig' | ${XARGS} ${RM}
+ @${FIND} ${PREFIX}/pthreads/include -type f -print | ${XARGS} ${CHMOD} 644
+ @${FIND} ${PREFIX}/pthreads/include -type d -print | ${XARGS} ${CHMOD} 755
@${CHOWN} -R ${BINOWN}:${BINGRP} ${PREFIX}/pthreads/include
.include "../../mk/bsd.pkg.mk"