From 1c54a66d9956e2ed3dd2f5058fb3c2113d5fb129 Mon Sep 17 00:00:00 2001 From: nakayama Date: Sun, 13 Dec 2009 05:01:32 +0000 Subject: System utilities, boot programs and kernel modules are machine (port) specific not CPU, so use MACHINE not MACHINE_ARCH. --- usr.sbin/apm/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin/apm') diff --git a/usr.sbin/apm/Makefile b/usr.sbin/apm/Makefile index 16a60bde277..c2eb4df8d35 100644 --- a/usr.sbin/apm/Makefile +++ b/usr.sbin/apm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2009/02/14 13:56:41 abs Exp $ +# $NetBSD: Makefile,v 1.17 2009/12/13 05:01:33 nakayama Exp $ .include @@ -7,7 +7,7 @@ ${MACHINE} == "hpcmips" || \ ${MACHINE} == "hpcsh" || \ ${MACHINE} == "macppc" || \ - ${MACHINE_ARCH} == "sparc" || \ + ${MACHINE} == "sparc" || \ ${MACHINE} == "zaurus") PROG= apm SRCS= apm.c apmsubr.c -- cgit