diff options
author | matusita <matusita@FreeBSD.org> | 2002-10-20 11:16:41 +0000 |
---|---|---|
committer | matusita <matusita@FreeBSD.org> | 2002-10-20 11:16:41 +0000 |
commit | 322001dbc0a59201cc0f00229949977db70d4f01 (patch) | |
tree | e4d158034898bb6e4d0ca68715693a98751a10cf /usr.sbin/sysinstall | |
parent | 7748521fbcda032a04350fddb6676e01085668bd (diff) | |
download | FreeBSD-src-322001dbc0a59201cc0f00229949977db70d4f01.zip FreeBSD-src-322001dbc0a59201cc0f00229949977db70d4f01.tar.gz |
Since NEWCARD is the default for i386, undef PCCARD_ARCH.
pccard.c is no longer needed for i386 also.
OKed by: imp, nyan
Diffstat (limited to 'usr.sbin/sysinstall')
-rw-r--r-- | usr.sbin/sysinstall/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/sysinstall/sysinstall.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/Makefile b/usr.sbin/sysinstall/Makefile index 1c4f221..f67ac34 100644 --- a/usr.sbin/sysinstall/Makefile +++ b/usr.sbin/sysinstall/Makefile @@ -10,7 +10,7 @@ SRCS= anonFTP.c cdrom.c command.c config.c devices.c dhcp.c \ system.c tape.c tcpip.c termcap.c ttys.c ufs.c usb.c user.c \ variable.c wizard.c keymap.h -.if ${MACHINE_ARCH} == "i386" +.if ${MACHINE} == "pc98" SRCS+= pccard.c .endif diff --git a/usr.sbin/sysinstall/sysinstall.h b/usr.sbin/sysinstall/sysinstall.h index 438a28e..e712be7 100644 --- a/usr.sbin/sysinstall/sysinstall.h +++ b/usr.sbin/sysinstall/sysinstall.h @@ -54,7 +54,7 @@ /*** Defines ***/ -#if defined(__i386__) || defined(PC98) +#if defined(PC98) #define PCCARD_ARCH 1 /* Support PCCARD installations */ #endif /* device limits */ |