diff options
author | heinz <heinz@pkgsrc.org> | 2004-01-27 00:53:10 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2004-01-27 00:53:10 +0000 |
commit | 18a916d5e6481b140ffb5e120e09d36645a44a11 (patch) | |
tree | 0e38a95bbce9b72b902212b13f3fff0a72b2b5fd /math | |
parent | d84262f580a6d28b6b7bde5294039c4f6e0999df (diff) | |
download | pkgsrc-18a916d5e6481b140ffb5e120e09d36645a44a11.tar.gz |
Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248
Diffstat (limited to 'math')
-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 5bc47bdbfb9..7f06127d607 100644 --- a/math/octave/Makefile +++ b/math/octave/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.42 2004/01/24 13:58:23 grant Exp $ +# $NetBSD: Makefile,v 1.43 2004/01/27 00:53:11 heinz Exp $ # FreeBSD Id: Makefile,v 1.18 1998/09/27 20:10:45 steve Exp DISTNAME= octave-2.0.17 @@ -35,7 +35,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\* -print | ${XARGS} ${RM} -f post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/octave/2.0.17/doc |