Module Name:    src
Committed By:   joerg
Date:           Sat Apr  9 00:26:52 UTC 2011

Modified Files:
        src/sys/arch/i386/stand: Makefile.booters

Log Message:
Do not ignore errors from genprom.


To generate a diff of this commit:
cvs rdiff -u -r1.82 -r1.83 src/sys/arch/i386/stand/Makefile.booters

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/i386/stand/Makefile.booters
diff -u src/sys/arch/i386/stand/Makefile.booters:1.82 src/sys/arch/i386/stand/Makefile.booters:1.83
--- src/sys/arch/i386/stand/Makefile.booters:1.82	Sat Jan 22 19:19:18 2011
+++ src/sys/arch/i386/stand/Makefile.booters	Sat Apr  9 00:26:52 2011
@@ -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

Reply via email to