Use MACHINE_ARCH instead of MACHINE to detect x86 arch.

Pointed out by:	Akio Morita <amorita@meadow.scphys.kyoto-u.ac.jp>
This commit is contained in:
KATO Takenori 1998-10-07 13:46:09 +00:00
parent e3de88f4ff
commit c668c15639

View File

@ -2,7 +2,7 @@ PROG= truss
SRCS= main.c setup.c syscalls.c syscalls.h ioctl.c
.if (${MACHINE} == "alpha")
SRCS+= alpha-fbsd.c
.elif (${MACHINE} == "i386")
.elif (${MACHINE_ARCH} == "i386")
SRCS+= i386-fbsd.c i386-linux.c linux_syscalls.h
.endif