diff options
author | wiz <wiz> | 2000-09-03 12:56:44 +0000 |
---|---|---|
committer | wiz <wiz> | 2000-09-03 12:56:44 +0000 |
commit | 8f98a2b4cf2d4d3a28afc2e42d9f2b53bcb64da6 (patch) | |
tree | 93714377d28aaf8a584c78483ccc3c3edfb752ab /net | |
parent | c00d0715b3759a58e781f1853bf86e134929b409 (diff) | |
download | pkgsrc-8f98a2b4cf2d4d3a28afc2e42d9f2b53bcb64da6.tar.gz |
$() -> ${}; remove if (NOPORTDOCS), since that's a FreeBSDism we don't have
Diffstat (limited to 'net')
-rw-r--r-- | net/tcpillust/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/net/tcpillust/Makefile b/net/tcpillust/Makefile index 2b4994609b8..7eb8a59b95b 100644 --- a/net/tcpillust/Makefile +++ b/net/tcpillust/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2000/08/31 15:12:08 jwise Exp $ +# $NetBSD: Makefile,v 1.4 2000/09/03 12:56:44 wiz Exp $ # $FreeBSD: ports/net/tcpillust/Makefile,v 1.1.1.1 2000/07/29 06:26:00 sada Exp $ # @@ -23,15 +23,13 @@ DOCS= README SAMPLES= tcpclient.log tcpserver.log post-install: -.if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/share/doc/tcpillust - for i in $(DOCS); do \ + for i in ${DOCS}; do \ ${INSTALL_DATA} ${WRKSRC}/$$i ${PREFIX}/share/doc/tcpillust; \ done ${MKDIR} ${PREFIX}/share/doc/tcpillust/sample - for i in $(SAMPLES); do \ + for i in ${SAMPLES}; do \ ${INSTALL_DATA} ${WRKSRC}/sample/$$i ${PREFIX}/share/doc/tcpillust/sample; \ done -.endif .include "../../mk/bsd.pkg.mk" |