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 /lang/sun-jdk13/Makefile | |
parent | 85e58afe750871e5736c21a64b0afaca5fd17ca7 (diff) | |
download | pkgsrc-dc6eadbf21d06496bbf555e397f79622e3e20821.tar.gz |
Use ${XARGS} instead of invoking xargs directly.
Diffstat (limited to 'lang/sun-jdk13/Makefile')
-rw-r--r-- | lang/sun-jdk13/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/sun-jdk13/Makefile b/lang/sun-jdk13/Makefile index f9d547bdfc1..460ef999c4a 100644 --- a/lang/sun-jdk13/Makefile +++ b/lang/sun-jdk13/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2001/05/17 15:03:00 abs Exp $ +# $NetBSD: Makefile,v 1.6 2001/05/19 03:56:37 jlam Exp $ # # MASTER_SITES is very special, and must end in "=": @@ -47,7 +47,7 @@ post-extract: @${RM} -rf ${WRKSRC}/jre post-patch: - @${FIND} ${WRKSRC} -name '*.orig' -print | xargs ${RM} -f + @${FIND} ${WRKSRC} -name '*.orig' -print | ${XARGS} ${RM} -f # This is ugly. The chown should happen after copying, ot tar should have # a way to override permissions. |