Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/i386/stand Do not ignore errors from genprom.



details:   https://anonhg.NetBSD.org/src/rev/5cd82551553a
branches:  trunk
changeset: 763969:5cd82551553a
user:      joerg <joerg%NetBSD.org@localhost>
date:      Sat Apr 09 00:26:52 2011 +0000

description:
Do not ignore errors from genprom.

diffstat:

 sys/arch/i386/stand/Makefile.booters |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 3cc605deda64 -r 5cd82551553a sys/arch/i386/stand/Makefile.booters
--- a/sys/arch/i386/stand/Makefile.booters      Fri Apr 08 17:45:10 2011 +0000
+++ b/sys/arch/i386/stand/Makefile.booters      Sat Apr 09 00:26:52 2011 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.booters,v 1.82 2011/01/22 19:19:18 joerg Exp $
+#      $NetBSD: Makefile.booters,v 1.83 2011/04/09 00:26:52 joerg Exp $
 
 .include <bsd.own.mk>
 
@@ -113,7 +113,7 @@
            ${STARTFILE} ${OBJS} ${LIBLIST} >${BASE}.list
        ${OBJCOPY} -O binary ${BASE}.sym ${BASE}.rom.tmp
        ${GENPROM} ${ROM_SIZE} < ${BASE}.rom.tmp > ${BASE}.rom || \
-           rm -f ${BASE}.rom
+           ( rm -f ${BASE}.rom && false )
        rm -f ${BASE}.rom.tmp
 
 CLEANFILES+= ${BASE}.com



Home | Main Index | Thread Index | Old Index