In make targets print the make variable TARGETS as we expect it rather

than the grammatically better sounding variant without the 'S'.  This
allows copy and paste and is less confusing.
This commit is contained in:
Bjoern A. Zeeb 2011-01-22 23:10:58 +00:00
parent eee8163bef
commit 841241fcb7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=217734

View File

@ -297,7 +297,7 @@ TARGET_ARCHES_${target}?= ${target}
.endfor
targets:
@echo "Supported TARGET/TARGET_ARCH pairs"
@echo "Supported TARGETS/TARGET_ARCH pairs"
.for target in ${TARGETS}
.for target_arch in ${TARGET_ARCHES_${target}}
@echo " ${target}/${target_arch}"