Improve wording of error message when CROSS_TOOLCHAIN is not found.

Reported by:	emaste, jhb
This commit is contained in:
Brooks Davis 2018-02-26 19:02:11 +00:00
parent 96378b0821
commit 2f5134834d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=330030

View file

@ -61,7 +61,7 @@ LOCALBASE?= /usr/local
.elif exists(${CROSS_TOOLCHAIN}) .elif exists(${CROSS_TOOLCHAIN})
.include "${CROSS_TOOLCHAIN}" .include "${CROSS_TOOLCHAIN}"
.else .else
.error CROSS_TOOLCHAIN is '${CROSS_TOOLCHAIN}' which is invalid .error CROSS_TOOLCHAIN ${CROSS_TOOLCHAIN} not found
.endif .endif
CROSSENV+=CROSS_TOOLCHAIN="${CROSS_TOOLCHAIN}" CROSSENV+=CROSS_TOOLCHAIN="${CROSS_TOOLCHAIN}"
.endif .endif