Add -lrump after -lkernspace, because kernspace.a references symbols

from librump and hooray for static linking semantics.

Fixes sun2 build issue reported by kre@.

(XXX WTF did this only start failing after the addition of t_threadpool?)
This commit is contained in:
thorpej 2018-12-26 14:27:23 +00:00
parent db8aa61da2
commit 87d5cea604
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.17 2018/12/24 21:42:05 thorpej Exp $
# $NetBSD: Makefile,v 1.18 2018/12/26 14:27:23 thorpej Exp $
.include <bsd.own.mk>
@ -26,7 +26,7 @@ LDADD.t_modlinkset+= -lrumpfs_cd9660 ${ADD_TO_LD}
LDADD+= ${ADD_TO_LD}
KERNSPACE != cd ${.CURDIR}/../kernspace && ${PRINTOBJDIR}
LDADD+= -L${KERNSPACE} -lkernspace
LDADD+= -L${KERNSPACE} -lkernspace -lrump
WARNS= 4