Switch web.mk to share/mk/web.site.mk in English version.

Remove ${.CURDIR} added at previous commit (nbm) because it seems this is
not necessary and mismatched with argument of .include directive.
This commit is contained in:
Jun Kuriyama 2000-11-07 08:31:00 +00:00
parent 71d9c01772
commit 391dc88a96
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=8307

View file

@ -1,10 +1,12 @@
# $FreeBSD: www/en/ports/Makefile.inc0,v 1.2 1999/09/06 07:02:48 peter Exp $
# $FreeBSD: www/en/ports/Makefile.inc0,v 1.3 2000/09/30 00:21:39 nbm Exp $
.if exists(${.CURDIR}/../Makefile.conf)
.if exists(../Makefile.conf)
.include "../Makefile.conf"
.endif
.if exists(${.CURDIR}/Makefile.inc)
.if exists(../Makefile.inc)
.include "../Makefile.inc"
.endif
.if exists(Makefile.inc)
.include "Makefile.inc"
.endif
@ -12,5 +14,4 @@
.include "Makefile.gen"
.endif
.include "../web.mk"
.include "${WEB_PREFIX}/share/mk/web.site.mk"