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 /math/octave | |
parent | 85e58afe750871e5736c21a64b0afaca5fd17ca7 (diff) | |
download | pkgsrc-dc6eadbf21d06496bbf555e397f79622e3e20821.tar.gz |
Use ${XARGS} instead of invoking xargs directly.
Diffstat (limited to 'math/octave')
-rw-r--r-- | math/octave/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/octave/Makefile b/math/octave/Makefile index 7e7a35e3208..b09ef9f0124 100644 --- a/math/octave/Makefile +++ b/math/octave/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2001/05/16 21:46:08 jtb Exp $ +# $NetBSD: Makefile,v 1.26 2001/05/19 03:56:37 jlam Exp $ # FreeBSD Id: Makefile,v 1.18 1998/09/27 20:10:45 steve Exp DISTNAME= octave-2.0.16 @@ -31,7 +31,7 @@ INFO_FILES= liboctave.info octave.info LIBOCTAVE_INFO= liboctave.info liboctave.info-1 liboctave.info-2 liboctave.info-3 post-extract: - ${FIND} ${WRKSRC}/doc -type f -name \*.info\* | xargs ${RM} -f + ${FIND} ${WRKSRC}/doc -type f -name \*.info\* | ${XARGS} ${RM} -f post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/octave/2.0.16/doc |