Don't fail the kernel build if dbsym fails.

This commit is contained in:
thorpej 2003-01-04 18:13:51 +00:00
parent 3c6eec6e52
commit c72ac1fcf2
1 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.walnut.inc,v 1.1 2002/12/09 12:15:52 scw Exp $
# $NetBSD: Makefile.walnut.inc,v 1.2 2003/01/04 18:13:51 thorpej Exp $
MKIMG?= ${THISPPC}/compile/walnut-mkimg.sh
CFLAGS+=-mcpu=403
@ -9,7 +9,9 @@ SYSTEM_FIRST_OBJ= walnut_start.o
SYSTEM_FIRST_SFILE= ${THISPPC}/walnut/walnut_start.S
.ifdef DBSYM
SYSTEM_LD_TAIL_EXTRA+=; echo ${DBSYM} $@; ${DBSYM} $@
SYSTEM_LD_TAIL_EXTRA+=; \
echo "${DBSYM} $@ || true"; \
${DBSYM} $@ || true
.endif
SYSTEM_LD_TAIL_EXTRA+=; \