diff options
author | nyan <nyan@FreeBSD.org> | 2006-03-10 12:18:41 +0000 |
---|---|---|
committer | nyan <nyan@FreeBSD.org> | 2006-03-10 12:18:41 +0000 |
commit | 3b59efd81b77f305beffceb0e7e32ebb22bd1bb5 (patch) | |
tree | ffcde6e0d34c0a86ea89836a218f590f181eca7e /usr.sbin/sysinstall/Makefile | |
parent | ba6a23db6e42f9cc2993e8d627e762b734ac117d (diff) | |
download | FreeBSD-src-3b59efd81b77f305beffceb0e7e32ebb22bd1bb5.zip FreeBSD-src-3b59efd81b77f305beffceb0e7e32ebb22bd1bb5.tar.gz |
Disable an SMP detection on pc98.
Diffstat (limited to 'usr.sbin/sysinstall/Makefile')
-rw-r--r-- | usr.sbin/sysinstall/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/Makefile b/usr.sbin/sysinstall/Makefile index c735c26..4c760a2 100644 --- a/usr.sbin/sysinstall/Makefile +++ b/usr.sbin/sysinstall/Makefile @@ -45,7 +45,7 @@ LDADD= -ldialog -lncurses -lutil -ldisk -lftpio # that is painful because of media changes and the structure of # sysinstall so for now it's a priori. # -.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64" +.if ${MACHINE} == "i386" || ${MACHINE_ARCH} == "amd64" SRCS+= acpi.c biosmptable.c # NB: HEAD has SMP in GENERIC so only one kernel #CFLAGS+=-DWITH_SMP |