svn commit: r208559 - head/share/mk

Rafal Jaworowski raj at FreeBSD.org
Wed May 26 09:23:51 UTC 2010


Author: raj
Date: Wed May 26 09:23:51 2010
New Revision: 208559
URL: http://svn.freebsd.org/changeset/base/208559

Log:
  Use MACHINE_ARCH instead of TARGET_ARCH.
  
  Pointed out by:	imp

Modified:
  head/share/mk/bsd.own.mk

Modified: head/share/mk/bsd.own.mk
==============================================================================
--- head/share/mk/bsd.own.mk	Wed May 26 04:14:29 2010	(r208558)
+++ head/share/mk/bsd.own.mk	Wed May 26 09:23:51 2010	(r208559)
@@ -279,8 +279,7 @@ WITH_IDEA=
 .endif
 
 # Enable FDT by default for selected platforms.
-.if defined(TARGET_ARCH) && \
-	(${TARGET_ARCH} == "arm" || ${TARGET_ARCH} == "powerpc")
+.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "powerpc"
 # XXX this is temporarily disabled until all FDT support code is in place.
 #_fdt=	FDT
 _no_fdt= FDT


More information about the svn-src-head mailing list