Module Name: src Committed By: matt Date: Sat Sep 5 03:49:50 UTC 2009
Modified Files: src/sys/conf [matt-nb5-mips64]: Makefile.kern.inc Log Message: Don't abort if DBSYM fails. To generate a diff of this commit: cvs rdiff -u -r1.118.4.2 -r1.118.4.2.4.1 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.118.4.2 src/sys/conf/Makefile.kern.inc:1.118.4.2.4.1 --- src/sys/conf/Makefile.kern.inc:1.118.4.2 Fri Mar 27 14:50:36 2009 +++ src/sys/conf/Makefile.kern.inc Sat Sep 5 03:49:50 2009 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.kern.inc,v 1.118.4.2 2009/03/27 14:50:36 msaitoh Exp $ +# $NetBSD: Makefile.kern.inc,v 1.118.4.2.4.1 2009/09/05 03:49:50 matt Exp $ # # This file contains common `MI' targets and definitions and it is included # at the bottom of each `MD' ${MACHINE}/conf/Makefile.${MACHINE}. @@ -235,7 +235,7 @@ SYSTEM_LD_TAIL+=; \ if grep '^\#define.*SYMTAB_SPACE' opt_ddbparam.h > /dev/null; then \ echo "${DBSYM} $@"; \ - ${DBSYM} $@; \ + ${DBSYM} $@ || true; \ fi SYSTEM_LD_HEAD+=${SYSTEM_LD_HEAD_EXTRA}