diff options
author | jlam <jlam@pkgsrc.org> | 2001-05-19 03:56:23 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-05-19 03:56:23 +0000 |
commit | dc6eadbf21d06496bbf555e397f79622e3e20821 (patch) | |
tree | 35829def2637f8f91ecdb3daaeecb1424685adf2 /devel/ptl2 | |
parent | 85e58afe750871e5736c21a64b0afaca5fd17ca7 (diff) | |
download | pkgsrc-dc6eadbf21d06496bbf555e397f79622e3e20821.tar.gz |
Use ${XARGS} instead of invoking xargs directly.
Diffstat (limited to 'devel/ptl2')
-rw-r--r-- | devel/ptl2/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/devel/ptl2/Makefile b/devel/ptl2/Makefile index 87107af9c6a..e0f8584e745 100644 --- a/devel/ptl2/Makefile +++ b/devel/ptl2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.32 2001/04/30 04:16:09 jlam Exp $ +# $NetBSD: Makefile,v 1.33 2001/05/19 03:56:33 jlam Exp $ DISTNAME= PTL-2.1.7 PKGNAME= ptl-2.1.7 @@ -18,9 +18,9 @@ PLIST_SRC= ${WRKDIR}/PLIST post-install: @${CHOWN} -R ${BINOWN}:${BINGRP} ${PREFIX}/PTL/include - @${FIND} ${PREFIX}/PTL/include -type f -name "*.orig" | xargs ${RM} - @${FIND} ${PREFIX}/PTL/include -type d -print | xargs ${CHMOD} 755 - @${FIND} ${PREFIX}/PTL/include -type f -print | xargs ${CHMOD} 444 + @${FIND} ${PREFIX}/PTL/include -type f -name "*.orig" | ${XARGS} ${RM} + @${FIND} ${PREFIX}/PTL/include -type d -print | ${XARGS} ${CHMOD} 755 + @${FIND} ${PREFIX}/PTL/include -type f -print | ${XARGS} ${CHMOD} 444 @${CP} ${PKGDIR}/PLIST ${PLIST_SRC} @cd ${PREFIX}; \ ${FIND} PTL -type f >>${PLIST_SRC}; \ |