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 /editors/xemacs | |
parent | d84262f580a6d28b6b7bde5294039c4f6e0999df (diff) | |
download | pkgsrc-18a916d5e6481b140ffb5e120e09d36645a44a11.tar.gz |
Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248
Diffstat (limited to 'editors/xemacs')
-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 |