Module Name: src
Committed By: matt
Date: Wed Aug 12 23:39:13 UTC 2009
Modified Files:
src/usr.bin/elf2aout: Makefile
Log Message:
Don't build for MIPS anymore
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/usr.bin/elf2aout/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/elf2aout/Makefile
diff -u src/usr.bin/elf2aout/Makefile:1.6 src/usr.bin/elf2aout/Makefile:1.7
--- src/usr.bin/elf2aout/Makefile:1.6 Fri Mar 22 00:17:56 2002
+++ src/usr.bin/elf2aout/Makefile Wed Aug 12 23:39:13 2009
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.6 2002/03/22 00:17:56 fredette Exp $
+# $NetBSD: Makefile,v 1.7 2009/08/12 23:39:13 matt Exp $
# from: @(#)Makefile 5.4 (Berkeley) 5/11/90
-# Build ELF to {ecoff, aout} tools on mips, for old bootblocks/PROMs,
-# and on m68k/powerpc, for kernels with old amigappc bootblocks.
-.if (${MACHINE_ARCH} == "mipsel" || ${MACHINE_ARCH} == "mipseb" || ${MACHINE_ARCH} == "m68000" || ${MACHINE_ARCH} == "m68k" || ${MACHINE_ARCH} == "powerpc")
+# Build ELF to {ecoff, aout} tools on m68k/powerpc, for kernels with old amigappc bootblocks.
+.if (${MACHINE_ARCH} == "m68000" || ${MACHINE_ARCH} == "m68k" || ${MACHINE_ARCH} == "powerpc")
PROG= elf2aout
.endif