Unconditionally include ${SRCCONF} if overridden

This avoids silently failing to include ${SRCCONF} specified by a make(1)
invocation.
This commit is contained in:
Ed Maste 2013-03-26 20:11:09 +00:00
parent 92e84e43a6
commit 89ba026a9d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=248751

View File

@ -117,7 +117,7 @@ __<bsd.own.mk>__:
.if !defined(_WITHOUT_SRCCONF)
SRCCONF?= /etc/src.conf
.if exists(${SRCCONF})
.if exists(${SRCCONF}) || ${SRCCONF} != "/etc/src.conf"
.include "${SRCCONF}"
.endif
.endif