summaryrefslogtreecommitdiff
path: root/www/netscape4-communicator
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>2000-01-17 12:40:00 +0000
committerSatoshi Asami <asami@FreeBSD.org>2000-01-17 12:40:00 +0000
commit23c0de20b065b4680065b8801fa4dbad19abd9ca (patch)
tree980e667588739e64d32ee796e35e3a4caea2000c /www/netscape4-communicator
parentUpgrade to the 2000-01-10 GCC 2.96 development snapshot. (diff)
Do not include bsd.port.pre.mk twice (once in the slave and once in the
master). This is done by defining a variable "PRE_MK_INCLUDED" in the slave before including ${MASTERDIR}/Makefile, and have the master check it before including any necessary macro files.
Diffstat (limited to 'www/netscape4-communicator')
-rw-r--r--www/netscape4-communicator/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/www/netscape4-communicator/Makefile b/www/netscape4-communicator/Makefile
index 94c04a5be102..415d2ab4602f 100644
--- a/www/netscape4-communicator/Makefile
+++ b/www/netscape4-communicator/Makefile
@@ -96,4 +96,9 @@ do-install:
post-install:
${CAT} ${PKGDIR}/DESCR
+# hack to allow slave ports to include bsd.port.pre.mk and then this file
+.if defined(PRE_MK_INCLUDED)
+.include <bsd.port.post.mk>
+.else
.include <bsd.port.mk>
+.endif