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 /audio/nas | |
parent | d84262f580a6d28b6b7bde5294039c4f6e0999df (diff) | |
download | pkgsrc-18a916d5e6481b140ffb5e120e09d36645a44a11.tar.gz |
Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248
Diffstat (limited to 'audio/nas')
-rw-r--r-- | audio/nas/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/nas/Makefile b/audio/nas/Makefile index e96abfc4e2c..76556c6879e 100644 --- a/audio/nas/Makefile +++ b/audio/nas/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.39 2004/01/20 12:07:43 agc Exp $ +# $NetBSD: Makefile,v 1.40 2004/01/27 00:53:12 heinz Exp $ DISTNAME= nas-1.6.src PKGNAME= ${DISTNAME:S/.src//} @@ -26,7 +26,7 @@ PKG_SYSCONFSUBDIR= nas REPLACE_PERL= clients/audio/auscope/auscope post-patch: - @for f in `${FIND} ${WRKSRC} -name '*.[ch]'`; do \ + @for f in `${FIND} ${WRKSRC} -name '*.[ch]' -print`; do \ ${SED} -e "s|<malloc.h>|<stdlib.h>|g" $$f > $$f.patch \ && ${MV} $$f.patch $$f; \ done |