From owner-svn-src-all@FreeBSD.ORG Tue May 25 16:31:17 2010 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 9E533106566C; Tue, 25 May 2010 16:31:17 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 4198A8FC17; Tue, 25 May 2010 16:31:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.3/8.14.1) with ESMTP id o4PGPITS024954; Tue, 25 May 2010 10:25:18 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Tue, 25 May 2010 10:25:22 -0600 (MDT) Message-Id: <20100525.102522.782174629775191929.imp@bsdimp.com> To: raj@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <201005251512.o4PFCLwl058548@svn.freebsd.org> References: <201005251512.o4PFCLwl058548@svn.freebsd.org> X-Mailer: Mew version 6.3 on Emacs 22.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r208537 - in head: share/mk tools/build/options 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 May 2010 16:31:17 -0000 In message: <201005251512.o4PFCLwl058548@svn.freebsd.org> Rafal Jaworowski writes: : +# Enable FDT by default for selected platforms. : +.if defined(TARGET_ARCH) && \ : + (${TARGET_ARCH} == "arm" || ${TARGET_ARCH} == "powerpc") : +# XXX this is temporarily disabled until all FDT support code is in place. : +#_fdt= FDT : +_no_fdt= FDT : +.else : +_no_fdt= FDT : +.endif The tests here should be: .if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "powerpc" Never test against TARGET_* in our Makefile system (except that binutils, gcc and gdb all use this for piecewise compile)... Warner