It is unlikely that we'll be supporting old-style ZMAGIC linux a.out

binaries on anything but i386.. (ia64, sparc64, etc)  Invert the .if
so that it is inclusive of i386 platforms rather than excluding just
the alpha.
This commit is contained in:
Peter Wemm 2001-01-07 03:10:15 +00:00
parent 7020326332
commit e4b36f7dd8

View file

@ -11,7 +11,7 @@ SRCS= linux_file.c linux_ioctl.c linux_ipc.c linux_machdep.c linux_misc.c \
opt_compat.h opt_linux.h opt_vmpage.h vnode_if.h
OBJS= linux_locore.o
.if ${MACHINE_ARCH} != "alpha"
.if ${MACHINE_ARCH} == "i386"
SRCS+= imgact_linux.c
.endif