Module Name:    src
Committed By:   jakllsch
Date:           Wed May 11 16:03:56 UTC 2011

Modified Files:
        src/sys/conf: Makefile.kern.inc

Log Message:
Make ${DBSYM} failure fatal.


To generate a diff of this commit:
cvs rdiff -u -r1.131 -r1.132 src/sys/conf/Makefile.kern.inc

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

Modified files:

Index: src/sys/conf/Makefile.kern.inc
diff -u src/sys/conf/Makefile.kern.inc:1.131 src/sys/conf/Makefile.kern.inc:1.132
--- src/sys/conf/Makefile.kern.inc:1.131	Sat Apr 30 19:21:09 2011
+++ src/sys/conf/Makefile.kern.inc	Wed May 11 16:03:56 2011
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.kern.inc,v 1.131 2011/04/30 19:21:09 plunky Exp $
+#	$NetBSD: Makefile.kern.inc,v 1.132 2011/05/11 16:03:56 jakllsch Exp $
 #
 # This file contains common `MI' targets and definitions and it is included
 # at the bottom of each `MD' ${MACHINE}/conf/Makefile.${MACHINE}.
@@ -252,7 +252,7 @@
 SYSTEM_LD_TAIL+=; \
 	if grep '^\#define.*SYMTAB_SPACE' opt_ddbparam.h > /dev/null; then \
 		echo "${DBSYM} [email protected]"; \
-		${DBSYM} [email protected]; \
+		${DBSYM} [email protected] || exit 1; \
 	fi
 
 .elifndef PROF
@@ -262,7 +262,7 @@
 SYSTEM_LD_TAIL+=; \
 	if grep '^\#define.*SYMTAB_SPACE' opt_ddbparam.h > /dev/null; then \
 		echo "${DBSYM} $@"; \
-		${DBSYM} $@; \
+		${DBSYM} $@ || exit 1; \
 	fi
 
 SYSTEM_LD_HEAD+=${SYSTEM_LD_HEAD_EXTRA}

Reply via email to