From owner-svn-src-all@FreeBSD.ORG Tue Jan 25 08:13:32 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5576B106566B; Tue, 25 Jan 2011 08:13:32 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2A9FF8FC0A; Tue, 25 Jan 2011 08:13:32 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id p0P8DWHO022383; Tue, 25 Jan 2011 08:13:32 GMT (envelope-from bz@svn.freebsd.org) Received: (from bz@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id p0P8DWDu022380; Tue, 25 Jan 2011 08:13:32 GMT (envelope-from bz@svn.freebsd.org) Message-Id: <201101250813.p0P8DWDu022380@svn.freebsd.org> From: "Bjoern A. Zeeb" Date: Tue, 25 Jan 2011 08:13:32 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r217815 - in head: . share/man/man7 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Jan 2011 08:13:32 -0000 Author: bz Date: Tue Jan 25 08:13:31 2011 New Revision: 217815 URL: http://svn.freebsd.org/changeset/base/217815 Log: Back out r217734. [1] Properly document what `make targets` is supposed to list to avoid further confusion given the place the target sits. Should have happened with r217125. Requested by: imp [1] Reviewed by: rwatson Modified: head/Makefile head/share/man/man7/build.7 Modified: head/Makefile ============================================================================== --- head/Makefile Tue Jan 25 07:37:12 2011 (r217814) +++ head/Makefile Tue Jan 25 08:13:31 2011 (r217815) @@ -28,7 +28,8 @@ # delete-old-dirs - Delete obsolete directories. # delete-old-files - Delete obsolete files. # delete-old-libs - Delete obsolete libraries. -# targets - Print a list of supported TARGET/TARGET_ARCH pairs. +# targets - Print a list of supported TARGET/TARGET_ARCH pairs +# for world and kernel targets. # # This makefile is simple by design. The FreeBSD make automatically reads # the /usr/share/mk/sys.mk unless the -m argument is specified on the @@ -297,7 +298,7 @@ TARGET_ARCHES_${target}?= ${target} .endfor targets: - @echo "Supported TARGETS/TARGET_ARCH pairs" + @echo "Supported TARGET/TARGET_ARCH pairs for world and kernel targets" .for target in ${TARGETS} .for target_arch in ${TARGET_ARCHES_${target}} @echo " ${target}/${target_arch}" Modified: head/share/man/man7/build.7 ============================================================================== --- head/share/man/man7/build.7 Tue Jan 25 07:37:12 2011 (r217814) +++ head/share/man/man7/build.7 Tue Jan 25 08:13:31 2011 (r217815) @@ -24,7 +24,7 @@ .\" .\" $FreeBSD$ .\" -.Dd January 22, 2011 +.Dd January 25, 2011 .Dt BUILD 7 .Os .Sh NAME @@ -229,6 +229,12 @@ This command takes a long time. .It Cm update Get updated sources as configured in .Xr make.conf 5 . +.It Cm targets +Print a list of supported +.Va TARGET +/ +.Va TARGET_ARCH +pairs for world and kernel targets. .It Cm tinderbox Execute the same targets as .Cm universe .