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 /x11/egtk | |
parent | 85e58afe750871e5736c21a64b0afaca5fd17ca7 (diff) | |
download | pkgsrc-dc6eadbf21d06496bbf555e397f79622e3e20821.tar.gz |
Use ${XARGS} instead of invoking xargs directly.
Diffstat (limited to 'x11/egtk')
-rw-r--r-- | x11/egtk/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/x11/egtk/Makefile b/x11/egtk/Makefile index 140d45010ce..f0b53c8a690 100644 --- a/x11/egtk/Makefile +++ b/x11/egtk/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2001/02/17 17:06:18 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2001/05/19 03:56:41 jlam Exp $ # DISTNAME= eGTK_0.3.4 @@ -18,9 +18,9 @@ USE_X11= yes WRKSRC= ${WRKDIR}/eGTK post-extract: - ${FIND} ${WRKSRC} -type d -name "CVS" -print0 | xargs -0 ${RM} -rf - ${FIND} ${WRKSRC} -type d -name "ise" -print0 | xargs -0 ${RM} -rf - ${FIND} ${WRKSRC} -type f -name "*.ace" -print0 | xargs -0 ${RM} -f + ${FIND} ${WRKSRC} -type d -name "CVS" -print0 | ${XARGS} -0 ${RM} -rf + ${FIND} ${WRKSRC} -type d -name "ise" -print0 | ${XARGS} -0 ${RM} -rf + ${FIND} ${WRKSRC} -type f -name "*.ace" -print0 | ${XARGS} -0 ${RM} -f ${RMDIR} ${WRKSRC}/examples/toolbar ${RM} ${WRKSRC}/examples/Makefile cd ${WRKSRC}/C/se; ${MAKE_PROGRAM} ${MAKE_FLAGS} -f Makefile.se clean |