Setting TARGET and TARGET_ARCH needs to be done in _MAKE, not in the
TGTS rule as _MAKE is used elsewhere. This should fix make world.
This commit is contained in:
@@ -124,7 +124,7 @@ MAKEPATH= ${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE}
|
|||||||
BINMAKE= \
|
BINMAKE= \
|
||||||
`if [ -x ${MAKEPATH}/make ]; then echo ${MAKEPATH}/make; else echo ${MAKE}; fi` \
|
`if [ -x ${MAKEPATH}/make ]; then echo ${MAKEPATH}/make; else echo ${MAKE}; fi` \
|
||||||
-m ${.CURDIR}/share/mk
|
-m ${.CURDIR}/share/mk
|
||||||
_MAKE= PATH=${PATH} ${BINMAKE} -f Makefile.inc1
|
_MAKE= PATH=${PATH} ${BINMAKE} -f Makefile.inc1 TARGET=${_TARGET} TARGET_ARCH=${_TARGET_ARCH}
|
||||||
|
|
||||||
# Guess machine architecture from machine type, and vice versa.
|
# Guess machine architecture from machine type, and vice versa.
|
||||||
.if !defined(TARGET_ARCH) && defined(TARGET)
|
.if !defined(TARGET_ARCH) && defined(TARGET)
|
||||||
@@ -205,7 +205,7 @@ cleanworld:
|
|||||||
#
|
#
|
||||||
|
|
||||||
${TGTS}:
|
${TGTS}:
|
||||||
${_+_}cd ${.CURDIR}; ${_MAKE} TARGET=${_TARGET} TARGET_ARCH=${_TARGET_ARCH} ${.TARGET}
|
${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET}
|
||||||
|
|
||||||
# Set a reasonable default
|
# Set a reasonable default
|
||||||
.MAIN: all
|
.MAIN: all
|
||||||
|
|||||||
Reference in New Issue
Block a user