svn commit: r217734 - head

Bjoern A. Zeeb bz at FreeBSD.org
Sat Jan 22 23:10:59 UTC 2011


Author: bz
Date: Sat Jan 22 23:10:58 2011
New Revision: 217734
URL: http://svn.freebsd.org/changeset/base/217734

Log:
  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.

Modified:
  head/Makefile

Modified: head/Makefile
==============================================================================
--- head/Makefile	Sat Jan 22 22:57:28 2011	(r217733)
+++ head/Makefile	Sat Jan 22 23:10:58 2011	(r217734)
@@ -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}"


More information about the svn-src-head mailing list