summaryrefslogtreecommitdiff
path: root/net/tcpillust
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2000-09-03 12:56:44 +0000
committerwiz <wiz@pkgsrc.org>2000-09-03 12:56:44 +0000
commit70f737b83db589d92f0cf4cb06e2273f109ff479 (patch)
tree93714377d28aaf8a584c78483ccc3c3edfb752ab /net/tcpillust
parent9624bb4a71d1b198fec5d5f4f96581c6b4f86e85 (diff)
downloadpkgsrc-70f737b83db589d92f0cf4cb06e2273f109ff479.tar.gz
$() -> ${}; remove if (NOPORTDOCS), since that's a FreeBSDism we don't have
Diffstat (limited to 'net/tcpillust')
-rw-r--r--net/tcpillust/Makefile8
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"