summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiz <wiz>2000-09-03 12:56:44 +0000
committerwiz <wiz>2000-09-03 12:56:44 +0000
commit19e01b5eb0b5c266a74d02f3e38df77fae2a0c0a (patch)
tree93714377d28aaf8a584c78483ccc3c3edfb752ab
parent195df3d768c525de6c05ad3db92a7bec348e28ee (diff)
downloadpkgsrc-19e01b5eb0b5c266a74d02f3e38df77fae2a0c0a.tar.gz
$() -> ${}; remove if (NOPORTDOCS), since that's a FreeBSDism we don't have
-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"