From 841241fcb753c6f09536b278d77c0692576004eb Mon Sep 17 00:00:00 2001 From: "Bjoern A. Zeeb" Date: Sat, 22 Jan 2011 23:10:58 +0000 Subject: [PATCH] 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. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5180fc03c826..f4c2c473693f 100644 --- a/Makefile +++ b/Makefile @@ -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}"