1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-02-08 16:52:38 +00:00

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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=40035

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