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 /math/tochnog/Makefile | |
parent | a1f837e37cee66bfce1e9c82c23e458c36a64d22 (diff) | |
download | pkgsrc-b97c41dde34f14e03b5985a3cf6a23aee3e7b3b4.tar.gz |
Remove redundant echoing, quoting, and input redirection to sed.
Diffstat (limited to 'math/tochnog/Makefile')
-rw-r--r-- | math/tochnog/Makefile | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/math/tochnog/Makefile b/math/tochnog/Makefile index 3a47964e926..17ca7ecb7d5 100644 --- a/math/tochnog/Makefile +++ b/math/tochnog/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2001/04/14 21:43:57 jtb Exp $ +# $NetBSD: Makefile,v 1.7 2001/04/28 23:59:22 jtb Exp $ DISTNAME= tochnog-20010210 CATEGORIES= math @@ -26,14 +26,8 @@ do-install: ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/tnp.ps.gz \ ${PREFIX}/share/doc/tochnog ${INSTALL_DATA_DIR} ${PREFIX}/share/tochnog/test - @for f in ${WRKDIR}/tochnog/test/*; do \ - i="${INSTALL_DATA} $$f ${PREFIX}/share/tochnog/test/"; \ - ${ECHO} $$i; $$i; \ - done + ${INSTALL_DATA} ${WRKDIR}/tochnog/test/* ${PREFIX}/share/tochnog/test/ ${INSTALL_DATA_DIR} ${PREFIX}/share/tochnog/tools - @for f in ${WRKDIR}/tochnog/tools/*; do \ - i="${INSTALL_DATA} $$f ${PREFIX}/share/tochnog/tools/"; \ - ${ECHO} $$i; $$i; \ - done + ${INSTALL_DATA} ${WRKDIR}/tochnog/tools/* ${PREFIX}/share/tochnog/tools/ .include "../../mk/bsd.pkg.mk" |