svn commit: r219146 - head/sys/modules/zfs

Nathan Whitehorn nwhitehorn at FreeBSD.org
Tue Mar 1 20:51:42 UTC 2011


Author: nwhitehorn
Date: Tue Mar  1 20:51:41 2011
New Revision: 219146
URL: http://svn.freebsd.org/changeset/base/219146

Log:
  Fix misuse of TARGET_ARCH. This should be MACHINE_ARCH.

Modified:
  head/sys/modules/zfs/Makefile

Modified: head/sys/modules/zfs/Makefile
==============================================================================
--- head/sys/modules/zfs/Makefile	Tue Mar  1 20:48:03 2011	(r219145)
+++ head/sys/modules/zfs/Makefile	Tue Mar  1 20:51:41 2011	(r219146)
@@ -85,7 +85,7 @@ CFLAGS+=-I${SUNW}/common
 CFLAGS+=-I${.CURDIR}/../../../include
 CFLAGS+=-DBUILDING_ZFS
 
-.if ${TARGET_ARCH} == "powerpc64"
+.if ${MACHINE_ARCH} == "powerpc64"
 CFLAGS+=-mminimal-toc
 .endif
 


More information about the svn-src-all mailing list