diff options
author | jlam <jlam> | 2001-05-19 03:56:23 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-05-19 03:56:23 +0000 |
commit | 66ad28b277d0af6fb5a0ff2449ff7d4286b6eeab (patch) | |
tree | 35829def2637f8f91ecdb3daaeecb1424685adf2 /games/craft/Makefile | |
parent | 9d24d73ade1b1b7f32d6182c78361801ea624464 (diff) | |
download | pkgsrc-66ad28b277d0af6fb5a0ff2449ff7d4286b6eeab.tar.gz |
Use ${XARGS} instead of invoking xargs directly.
Diffstat (limited to 'games/craft/Makefile')
-rw-r--r-- | games/craft/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/craft/Makefile b/games/craft/Makefile index f004a4b4de3..8109e7948ec 100644 --- a/games/craft/Makefile +++ b/games/craft/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2001/02/16 15:10:45 wiz Exp $ +# $NetBSD: Makefile,v 1.8 2001/05/19 03:56:35 jlam Exp $ DISTNAME= craftcc35 PKGNAME= craft-3.5 @@ -15,7 +15,7 @@ USE_X11BASE= yes WRKSRC= ${WRKDIR} post-extract: - @${FIND} ${WRKSRC} -type f -name '*~' | xargs ${RM} -f + @${FIND} ${WRKSRC} -type f -name '*~' | ${XARGS} ${RM} -f @${LN} -fs ${FILESDIR}/Makefile ${WRKSRC} post-patch: |