From owner-svn-src-head@freebsd.org Thu Sep 17 04:43:08 2015 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B58BF9CE77D; Thu, 17 Sep 2015 04:43:08 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A357C1A36; Thu, 17 Sep 2015 04:43:08 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8H4h8sJ087365; Thu, 17 Sep 2015 04:43:08 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8H4h8Fw087364; Thu, 17 Sep 2015 04:43:08 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201509170443.t8H4h8Fw087364@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Thu, 17 Sep 2015 04:43:08 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r287900 - head X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Sep 2015 04:43:08 -0000 Author: bdrewery Date: Thu Sep 17 04:43:07 2015 New Revision: 287900 URL: https://svnweb.freebsd.org/changeset/base/287900 Log: Get arm64/aarch64 into 'make targets' output to fix makeman. Modified: head/Makefile Modified: head/Makefile ============================================================================== --- head/Makefile Thu Sep 17 04:22:00 2015 (r287899) +++ head/Makefile Thu Sep 17 04:43:07 2015 (r287900) @@ -382,7 +382,7 @@ kernel-toolchains: # .if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets) # XXX Add arm64 to universe only if we have an external binutils installed. -# It does not build with the in-tree linker. +# It does not build with the in-tree linker. Added to lower .for loops too. .if exists(/usr/local/aarch64-freebsd/bin/ld) UNIVERSE_arm64=arm64 .elif empty(${TARGETS}) @@ -397,7 +397,7 @@ TARGET_ARCHES_arm64?= aarch64 TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 TARGET_ARCHES_powerpc?= powerpc powerpc64 TARGET_ARCHES_pc98?= i386 -.for target in ${TARGETS} +.for target in ${TARGETS} arm64 TARGET_ARCHES_${target}?= ${target} .endfor @@ -410,7 +410,7 @@ KERNSRCDIR?= ${.CURDIR}/sys targets: .PHONY @echo "Supported TARGET/TARGET_ARCH pairs for world and kernel targets" -.for target in ${TARGETS} +.for target in ${TARGETS} arm64 .for target_arch in ${TARGET_ARCHES_${target}} @echo " ${target}/${target_arch}" .endfor