Use an up-to-date make binary in the upgrade_checks target if

one is already available.  This avoids sometimes unnecessary
step of attempting to rebuild the make binary again which may
fail at all if, for example, one has removed his /usr/include
before doing an installworld (to keep /usr/include tidied up).

Pointed out by:	kris, marcel
This commit is contained in:
Ruslan Ermilov 2003-07-19 23:17:08 +00:00
parent 39ae372d78
commit ef2c779bf9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=117793

View File

@ -141,7 +141,7 @@ kernel: buildkernel installkernel
#
upgrade_checks:
@if ! (cd ${.CURDIR}/tools/regression/usr.bin/make && \
PATH=${PATH} ${MAKE} >/dev/null 2>&1); \
PATH=${PATH} ${BINMAKE} >/dev/null 2>&1); \
then \
(cd ${.CURDIR} && make make); \
fi