svn commit: r248486 - head/sys/modules/dtrace/fbt

Justin Hibbits jhibbits at FreeBSD.org
Tue Mar 19 00:39:02 UTC 2013


Author: jhibbits
Date: Tue Mar 19 00:39:02 2013
New Revision: 248486
URL: http://svnweb.freebsd.org/changeset/base/248486

Log:
  Fix the powerpc64 build.  MACHINE_CPUARCH is common for powerpc/powerpc64,
  not MACHINE_ARCH.

Modified:
  head/sys/modules/dtrace/fbt/Makefile

Modified: head/sys/modules/dtrace/fbt/Makefile
==============================================================================
--- head/sys/modules/dtrace/fbt/Makefile	Mon Mar 18 23:51:39 2013	(r248485)
+++ head/sys/modules/dtrace/fbt/Makefile	Tue Mar 19 00:39:02 2013	(r248486)
@@ -3,7 +3,7 @@
 .PATH: ${.CURDIR}/../../../cddl/dev/fbt
 
 KMOD=		fbt
-.if ${MACHINE_ARCH} == "powerpc"
+.if ${MACHINE_CPUARCH} == "powerpc"
 SRCS=		fbt_powerpc.c
 .else
 SRCS=		fbt.c


More information about the svn-src-all mailing list