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 /www | |
parent | 85e58afe750871e5736c21a64b0afaca5fd17ca7 (diff) | |
download | pkgsrc-dc6eadbf21d06496bbf555e397f79622e3e20821.tar.gz |
Use ${XARGS} instead of invoking xargs directly.
Diffstat (limited to 'www')
-rw-r--r-- | www/w3m/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/w3m/Makefile b/www/w3m/Makefile index 0c5946db83d..a4c0ffc31bf 100644 --- a/www/w3m/Makefile +++ b/www/w3m/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2001/05/01 00:31:24 kei Exp $ +# $NetBSD: Makefile,v 1.25 2001/05/19 03:56:41 jlam Exp $ # DISTNAME= w3m-0.2.1 @@ -106,7 +106,7 @@ post-extract: @(cd ${WRKSRC}/doc-jp; ${RM} -fr CVS) post-patch: - ${FIND} ${WRKSRC} -type f -name '*.orig'|xargs ${RM} + ${FIND} ${WRKSRC} -type f -name '*.orig' | ${XARGS} ${RM} # do not look at previous configuration do-configure: |