summaryrefslogtreecommitdiff
path: root/biology/chemtool
diff options
context:
space:
mode:
authorjtb <jtb@pkgsrc.org>2001-04-28 23:59:17 +0000
committerjtb <jtb@pkgsrc.org>2001-04-28 23:59:17 +0000
commitb97c41dde34f14e03b5985a3cf6a23aee3e7b3b4 (patch)
tree97228d7da600e4c7e4800096060fa118f9f09a60 /biology/chemtool
parenta1f837e37cee66bfce1e9c82c23e458c36a64d22 (diff)
downloadpkgsrc-b97c41dde34f14e03b5985a3cf6a23aee3e7b3b4.tar.gz
Remove redundant echoing, quoting, and input redirection to sed.
Diffstat (limited to 'biology/chemtool')
-rw-r--r--biology/chemtool/Makefile13
1 files changed, 4 insertions, 9 deletions
diff --git a/biology/chemtool/Makefile b/biology/chemtool/Makefile
index b78e1d30599..a9fac5e2f86 100644
--- a/biology/chemtool/Makefile
+++ b/biology/chemtool/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2001/04/14 21:43:59 jtb Exp $
+# $NetBSD: Makefile,v 1.8 2001/04/28 23:59:18 jtb Exp $
DISTNAME= chemtool-1.3
CATEGORIES= biology
@@ -14,14 +14,9 @@ MAKE_ENV+= PKGLOCALEDIR="${PKGLOCALEDIR}"
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/chemtool
- @for f in ${WRKSRC}/examples/*; do \
- i="${INSTALL_DATA} $$f ${PREFIX}/share/examples/chemtool/"; \
- ${ECHO} $$i; $$i; \
- done
+ ${INSTALL_DATA} ${WRKSRC}/examples/* ${PREFIX}/share/examples/chemtool
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/chemtool
- @for f in README TODO; do \
- i="${INSTALL_DATA} ${WRKSRC}/$$f ${PREFIX}/share/doc/chemtool/"; \
- ${ECHO} $$i; $$i; \
- done
+ cd ${WRKSRC} && ${INSTALL_DATA} README TODO \
+ ${PREFIX}/share/doc/chemtool/
.include "../../mk/bsd.pkg.mk"