Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch use the right version of ELF2AOUT



details:   https://anonhg.NetBSD.org/src/rev/d454f79c6f47
branches:  trunk
changeset: 447138:d454f79c6f47
user:      christos <christos%NetBSD.org@localhost>
date:      Wed Jan 02 00:48:13 2019 +0000

description:
use the right version of ELF2AOUT

diffstat:

 sys/arch/luna68k/stand/boot/Makefile |  4 ++--
 sys/arch/x68k/stand/boot/Makefile    |  4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 74cc3088ed9c -r d454f79c6f47 sys/arch/luna68k/stand/boot/Makefile
--- a/sys/arch/luna68k/stand/boot/Makefile      Wed Jan 02 00:46:34 2019 +0000
+++ b/sys/arch/luna68k/stand/boot/Makefile      Wed Jan 02 00:48:13 2019 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.15 2018/09/28 03:51:34 isaki Exp $
+#      $NetBSD: Makefile,v 1.16 2019/01/02 00:50:02 christos Exp $
 #      @(#)Makefile    8.2 (Berkeley) 8/15/93
 
 NOMAN= # defined
@@ -80,7 +80,7 @@
 ${PROG}: ${LDSCRIPT} ${OBJS} ${LIBS}
        ${_MKTARGET_LINK}
        ${LD} ${LINKFORMAT} -x -o ${PROG}.elf ${OBJS} ${LIBS}
-       ${ELF2AOUT} ${PROG}.elf ${PROG}.aout
+       ${M68K_ELF2AOUT} ${PROG}.elf ${PROG}.aout
        mv ${PROG}.aout ${PROG}
 
 CLEANFILES+=   ${PROG}.aout ${PROG}.elf
diff -r 74cc3088ed9c -r d454f79c6f47 sys/arch/x68k/stand/boot/Makefile
--- a/sys/arch/x68k/stand/boot/Makefile Wed Jan 02 00:46:34 2019 +0000
+++ b/sys/arch/x68k/stand/boot/Makefile Wed Jan 02 00:48:13 2019 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.29 2018/12/31 19:25:46 christos Exp $
+#      $NetBSD: Makefile,v 1.30 2019/01/02 00:48:13 christos Exp $
 
 NOMAN=         # defined
 
@@ -55,7 +55,7 @@
        ${_MKTARGET_LINK}
        ${LD} ${LINKFLAGS} -o ${PROG}.sym ${OBJS} ${LDLIBS}
        ${STRIP} ${PROG}.sym -o ${PROG}.strip
-       ${ELF2AOUT} ${PROG}.strip ${PROG}
+       ${M68K_ELF2AOUT} ${PROG}.strip ${PROG}
 
 CLEANFILES+=   ${PROG}.sym ${PROG}.strip
 



Home | Main Index | Thread Index | Old Index