diff options
author | nwhitehorn <nwhitehorn@FreeBSD.org> | 2010-07-13 12:47:31 +0000 |
---|---|---|
committer | nwhitehorn <nwhitehorn@FreeBSD.org> | 2010-07-13 12:47:31 +0000 |
commit | 07bff8843eee2c79cfcf30977a767f3319cbb4ad (patch) | |
tree | 3af48b8d6b6ea1dca42476ee2bc1befb13cd115a /sys/modules/hwpmc | |
parent | b076092fdd67d1ebb8c03e6078349eeadcfc4c0b (diff) | |
download | FreeBSD-src-07bff8843eee2c79cfcf30977a767f3319cbb4ad.zip FreeBSD-src-07bff8843eee2c79cfcf30977a767f3319cbb4ad.tar.gz |
Make kernel modules build correctly on 64-bit PowerPC.
Diffstat (limited to 'sys/modules/hwpmc')
-rw-r--r-- | sys/modules/hwpmc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/hwpmc/Makefile b/sys/modules/hwpmc/Makefile index 1febf54..b295a67 100644 --- a/sys/modules/hwpmc/Makefile +++ b/sys/modules/hwpmc/Makefile @@ -28,7 +28,7 @@ SRCS+= device_if.h bus_if.h SRCS+= hwpmc_ia64.c .endif -.if ${MACHINE_ARCH} == "powerpc" +.if ${MACHINE_CPUARCH} == "powerpc" SRCS+= hwpmc_powerpc.c .endif |