diff options
author | jtb <jtb@pkgsrc.org> | 2001-04-28 23:59:17 +0000 |
---|---|---|
committer | jtb <jtb@pkgsrc.org> | 2001-04-28 23:59:17 +0000 |
commit | b97c41dde34f14e03b5985a3cf6a23aee3e7b3b4 (patch) | |
tree | 97228d7da600e4c7e4800096060fa118f9f09a60 /mail/etach/Makefile | |
parent | a1f837e37cee66bfce1e9c82c23e458c36a64d22 (diff) | |
download | pkgsrc-b97c41dde34f14e03b5985a3cf6a23aee3e7b3b4.tar.gz |
Remove redundant echoing, quoting, and input redirection to sed.
Diffstat (limited to 'mail/etach/Makefile')
-rw-r--r-- | mail/etach/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/mail/etach/Makefile b/mail/etach/Makefile index f9ee44271aa..4792f3b2f14 100644 --- a/mail/etach/Makefile +++ b/mail/etach/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2001/04/14 21:43:48 jtb Exp $ +# $NetBSD: Makefile,v 1.4 2001/04/28 23:59:19 jtb Exp $ DISTNAME= etach-1.1.6 CATEGORIES= mail @@ -27,10 +27,7 @@ do-install: ${INSTALL_DATA_DIR} ${PREFIX}/${LISPDIR} ${INSTALL_DATA} ${WRKSRC}/etach.el ${PREFIX}/${LISPDIR} ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/etach - @for t in ${WRKSRC}/README.txt ${WRKSRC}/FAQ.txt \ - ${WRKSRC}/LICENSE.txt; do \ - c="${INSTALL_DATA} $$t ${PREFIX}/share/doc/etach/"; \ - ${ECHO} $$c; $$c; \ - done + cd ${WRKSRC} && ${INSTALL_DATA} README.txt FAQ.txt LICENSE.txt \ + ${PREFIX}/share/doc/etach/ .include "../../mk/bsd.pkg.mk" |