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 | c00807be673f4f2bb5250bb34151186d0006749e (patch) | |
tree | 0e38a95bbce9b72b902212b13f3fff0a72b2b5fd /cross | |
parent | ede0be0eaa8bfcc8cfdb0b40604997b8ceb055d7 (diff) | |
download | pkgsrc-c00807be673f4f2bb5250bb34151186d0006749e.tar.gz |
Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248
Diffstat (limited to 'cross')
-rw-r--r-- | cross/i386-msdosdjgpp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cross/i386-msdosdjgpp/Makefile b/cross/i386-msdosdjgpp/Makefile index 54c0820a7be..ff7c3f0cf7f 100644 --- a/cross/i386-msdosdjgpp/Makefile +++ b/cross/i386-msdosdjgpp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2004/01/20 12:10:55 agc Exp $ +# $NetBSD: Makefile,v 1.18 2004/01/27 00:53:12 heinz Exp $ # DISTVERSION= 2.02.0 @@ -35,7 +35,7 @@ post-extract: for file in ${DJGPP_FILES}; do \ unzip -Loq ${_DISTDIR}/$$file; \ done; \ - for file in `${FIND} include -type f`; do \ + for file in `${FIND} include -type f -print`; do \ ${CAT} $$file | col >$$file.new; \ ${MV} -f $$file.new $$file; \ done |