Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/elf2aout Match all arm (and simplify powerpc conditi...
details: https://anonhg.NetBSD.org/src/rev/d4c76f9bdaa2
branches: trunk
changeset: 995684:d4c76f9bdaa2
user: martin <martin%NetBSD.org@localhost>
date: Tue Jan 01 14:01:46 2019 +0000
description:
Match all arm (and simplify powerpc conditionals)
diffstat:
usr.bin/elf2aout/Makefile | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
diffs (21 lines):
diff -r 7aa943294a35 -r d4c76f9bdaa2 usr.bin/elf2aout/Makefile
--- a/usr.bin/elf2aout/Makefile Tue Jan 01 10:09:26 2019 +0000
+++ b/usr.bin/elf2aout/Makefile Tue Jan 01 14:01:46 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.12 2018/12/31 13:32:05 christos Exp $
+# $NetBSD: Makefile,v 1.13 2019/01/01 14:01:46 martin Exp $
# from: @(#)Makefile 5.4 (Berkeley) 5/11/90
.include <bsd.own.mk> # for MACHINE_CPU
@@ -7,9 +7,8 @@
# Build ELF to aout tools on m68k/earmv4/powerpc,
# for kernels with old bootblocks.
.if (${MACHINE_CPU} == "m68k" || \
- ${MACHINE_ARCH} == "arm" || \
- ${MACHINE_ARCH} == "powerpc" || \
- ${MACHINE_ARCH} == "powerpc64")
+ ${MACHINE_CPU} == "arm" || \
+ ${MACHINE_CPU} == "powerpc" )
PROG= elf2aout
.endif
Home |
Main Index |
Thread Index |
Old Index