diff options
author | tv <tv@pkgsrc.org> | 2006-11-10 17:34:09 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2006-11-10 17:34:09 +0000 |
commit | 0f6b1bb31cff2516edc9bcf840137c956e6cc822 (patch) | |
tree | d14029e2529c2e6d34dc0be3357cb0bc70b8c46d /math/octave-current | |
parent | 782ab28b21ea8c65501535b0c04e27715f57f58a (diff) | |
download | pkgsrc-0f6b1bb31cff2516edc9bcf840137c956e6cc822.tar.gz |
Use find -print | xargs rather than find -exec.
Diffstat (limited to 'math/octave-current')
-rw-r--r-- | math/octave-current/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/octave-current/Makefile b/math/octave-current/Makefile index 3ac7a78094d..fb3c1724195 100644 --- a/math/octave-current/Makefile +++ b/math/octave-current/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.58 2006/10/04 21:47:57 wiz Exp $ +# $NetBSD: Makefile,v 1.59 2006/11/10 17:40:11 tv Exp $ DISTNAME= octave-${OCTAVE_VER} PKGNAME= octave-current-${OCTAVE_VER} @@ -55,7 +55,7 @@ OCTAVE_HTML= faq/Octave-FAQ_*.html interpreter/octave_*.html \ UNWRAP_FILES+= mkoctfile octave-bug src/oct-conf.h post-extract: - ${FIND} ${WRKSRC}/doc -type f -name '*.info*' -exec ${RM} -f {} \; + ${FIND} ${WRKSRC}/doc -type f -name '*.info*' -print | ${XARGS} ${RM} -f ${MKDIR} ${WRKSRC}/src/pic # substitute in the real path to various bits of the toolchain because |