diff options
author | jtb <jtb> | 2001-04-28 23:59:17 +0000 |
---|---|---|
committer | jtb <jtb> | 2001-04-28 23:59:17 +0000 |
commit | e223e77651d454e3a71ff010c26610a64bde6f3a (patch) | |
tree | 97228d7da600e4c7e4800096060fa118f9f09a60 /graphics/pgraf | |
parent | a41ff01f93766780e8b2426559cd4ec7522cac9c (diff) | |
download | pkgsrc-e223e77651d454e3a71ff010c26610a64bde6f3a.tar.gz |
Remove redundant echoing, quoting, and input redirection to sed.
Diffstat (limited to 'graphics/pgraf')
-rw-r--r-- | graphics/pgraf/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/graphics/pgraf/Makefile b/graphics/pgraf/Makefile index 904e21577fc..163bc8ddad7 100644 --- a/graphics/pgraf/Makefile +++ b/graphics/pgraf/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2001/04/14 21:43:44 jtb Exp $ +# $NetBSD: Makefile,v 1.5 2001/04/28 23:59:19 jtb Exp $ DISTNAME= pgraf-20010131 CATEGORIES= graphics @@ -20,9 +20,7 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/man/man3/pgraf.3 ${PREFIX}/man/man3 ${INSTALL_DATA} ${WRKSRC}/man/man5/pgraf.5 ${PREFIX}/man/man5 ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/pgraf - @for f in ${WRKSRC}/metagens/*.r ${WRKSRC}/tests/*; do \ - i="${INSTALL_DATA} $$f ${PREFIX}/share/examples/pgraf/"; \ - ${ECHO} $$i; $$i; \ - done + ${INSTALL_DATA} ${WRKSRC}/metagens/*.r ${WRKSRC}/tests/* \ + ${PREFIX}/share/examples/pgraf/ .include "../../mk/bsd.pkg.mk" |