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 /editors/xemacs/Makefile | |
parent | ede0be0eaa8bfcc8cfdb0b40604997b8ceb055d7 (diff) | |
download | pkgsrc-c00807be673f4f2bb5250bb34151186d0006749e.tar.gz |
Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248
Diffstat (limited to 'editors/xemacs/Makefile')
-rw-r--r-- | editors/xemacs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/xemacs/Makefile b/editors/xemacs/Makefile index eb80fa6bf8c..82a6fe8490f 100644 --- a/editors/xemacs/Makefile +++ b/editors/xemacs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.66 2004/01/03 18:49:39 reed Exp $ +# $NetBSD: Makefile,v 1.67 2004/01/27 00:53:11 heinz Exp $ DISTNAME= xemacs-21.4.14 PKGREVISION= 1 @@ -137,7 +137,7 @@ post-install: ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/lib/${DISTNAME} ${INSTALL_DATA_DIR} ${PREFIX}/lib/xemacs .if defined(MANZ) - ${FIND} ${PREFIX}/lib/${DISTNAME} -name "*.el" -type f | \ + ${FIND} ${PREFIX}/lib/${DISTNAME} -name "*.el" -type f -print | \ ${XARGS} ${GZIP_CMD} .endif |