From 042bbe552f5669ceaa1c85459f37a881d7974515 Mon Sep 17 00:00:00 2001 From: Peter Grehan Date: Thu, 3 Feb 2005 06:12:43 +0000 Subject: [PATCH] Don't build syscons, uart or vpo on PPC. --- sys/modules/Makefile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/sys/modules/Makefile b/sys/modules/Makefile index bc4d785936a..46f71e70d14 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -214,7 +214,7 @@ SUBDIR= ${_3dfx} \ twe \ tx \ txp \ - uart \ + ${_uart} \ ubsa \ ubsec \ ubser \ @@ -246,7 +246,7 @@ SUBDIR= ${_3dfx} \ ${_vesa} \ vge \ vkbd \ - vpo \ + ${_vpo} \ vr \ vx \ wb \ @@ -259,10 +259,15 @@ SUBDIR= ${_3dfx} \ ${_xe} \ xl -.if ${MACHINE_ARCH} != "sparc64" +.if ${MACHINE_ARCH} != "sparc64" && ${MACHINE_ARCH} != "powerpc" _syscons= syscons .endif +.if ${MACHINE_ARCH} != "powerpc" +_uart= uart +_vpo= vpo +.endif + .if defined(ALL_MODULES) _ufs= ufs .endif