diff options
author | heinz <heinz> | 2004-01-27 00:53:10 +0000 |
---|---|---|
committer | heinz <heinz> | 2004-01-27 00:53:10 +0000 |
commit | c4a746650ec3ce51092f46b30440ee814f6dbcaa (patch) | |
tree | 0e38a95bbce9b72b902212b13f3fff0a72b2b5fd /editors | |
parent | d8e3f2f0d5830a73b60fbd37e5d63bfc0282c3c6 (diff) | |
download | pkgsrc-c4a746650ec3ce51092f46b30440ee814f6dbcaa.tar.gz |
Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248
Diffstat (limited to 'editors')
-rw-r--r-- | editors/emacs-nox11/Makefile | 4 | ||||
-rw-r--r-- | editors/emacs/Makefile | 4 | ||||
-rw-r--r-- | editors/emacs20/Makefile | 4 | ||||
-rw-r--r-- | editors/xemacs/Makefile | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/editors/emacs-nox11/Makefile b/editors/emacs-nox11/Makefile index 96148862b4c..eff016fe4db 100644 --- a/editors/emacs-nox11/Makefile +++ b/editors/emacs-nox11/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2004/01/22 08:30:30 grant Exp $ +# $NetBSD: Makefile,v 1.8 2004/01/27 00:53:12 heinz Exp $ # FreeBSD Id: Makefile,v 1.30 1997/12/14 02:03:53 asami Exp DISTNAME= emacs-21.3 @@ -32,7 +32,7 @@ post-extract: ${CP} ${FILESDIR}/site-init.el ${WRKSRC}/lisp pre-install: - @${FIND} ${WRKSRC} -type f -name "*.orig" | ${XARGS} ${RM} -f + @${FIND} ${WRKSRC} -type f -name "*.orig" -print | ${XARGS} ${RM} -f post-install: ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/emacs diff --git a/editors/emacs/Makefile b/editors/emacs/Makefile index 281e979d38c..9bf34fb2b86 100644 --- a/editors/emacs/Makefile +++ b/editors/emacs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.66 2004/01/22 08:30:30 grant Exp $ +# $NetBSD: Makefile,v 1.67 2004/01/27 00:53:12 heinz Exp $ # FreeBSD Id: Makefile,v 1.30 1997/12/14 02:03:53 asami Exp DISTNAME= emacs-21.3 @@ -64,7 +64,7 @@ post-extract: ${CP} ${FILESDIR}/site-init.el ${WRKSRC}/lisp pre-install: - @${FIND} ${WRKSRC} -type f -name "*.orig" | ${XARGS} ${RM} -f + @${FIND} ${WRKSRC} -type f -name "*.orig" -print | ${XARGS} ${RM} -f post-install: ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/emacs diff --git a/editors/emacs20/Makefile b/editors/emacs20/Makefile index abdd65a3606..377c5c3ca3d 100644 --- a/editors/emacs20/Makefile +++ b/editors/emacs20/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2004/01/22 08:30:30 grant Exp $ +# $NetBSD: Makefile,v 1.10 2004/01/27 00:53:11 heinz Exp $ DISTNAME= emacs-20.7 PKGREVISION= 2 @@ -80,7 +80,7 @@ INFO_FILES= emacs vip viper forms gnus mh-e cl sc dired-x ediff \ INSTALL_PROGRAM=${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} pre-install: - @${FIND} ${WRKSRC} -type f -name "*.orig*" | ${XARGS} ${RM} -f + @${FIND} ${WRKSRC} -type f -name "*.orig*" -print | ${XARGS} ${RM} -f post-install: ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/emacs 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 |