For make universe, in addition to make.conf, also ignore a

src.conf with possibe non-default options.

Reviewed by:	ru
MFC after:	10 days
This commit is contained in:
Bjoern A. Zeeb 2008-06-17 09:06:46 +00:00
parent fdbeb80a2b
commit fbb8871ab0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=179842

View File

@ -294,7 +294,7 @@ universe_${target}:
@echo ">> ${target} started on `LC_ALL=C date`"
-cd ${.CURDIR} && ${MAKE} ${JFLAG} buildworld \
TARGET=${target} \
__MAKE_CONF=/dev/null \
__MAKE_CONF=/dev/null SRCCONF=/dev/null \
> _.${target}.buildworld 2>&1
@echo ">> ${target} buildworld completed on `LC_ALL=C date`"
.endif
@ -306,7 +306,7 @@ universe_${target}:
-cd ${.CURDIR} && ${MAKE} ${JFLAG} buildkernel \
TARGET=${target} \
KERNCONF=${kernel} \
__MAKE_CONF=/dev/null \
__MAKE_CONF=/dev/null SRCCONF=/dev/null \
> _.${target}.${kernel} 2>&1
.endfor
@echo ">> ${target} completed on `LC_ALL=C date`"