From 9df67dbe77f019220f673a5ad553f7c36a85de12 Mon Sep 17 00:00:00 2001 From: christos Date: Sat, 16 May 2020 12:44:42 +0000 Subject: [PATCH] more nofifofs --- tests/rump/modautoload/Makefile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/tests/rump/modautoload/Makefile b/tests/rump/modautoload/Makefile index 6b2f4b05da5c..1e923c02b36c 100644 --- a/tests/rump/modautoload/Makefile +++ b/tests/rump/modautoload/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2019/08/17 04:04:28 kamil Exp $ +# $NetBSD: Makefile,v 1.10 2020/05/16 12:44:42 christos Exp $ # .include @@ -14,9 +14,13 @@ SRCS.t_modautoload+= t_modautoload.c # on amd64. This is the reason we keep this test in its own # subdirectory -- otherwise the LDADD lines would get a little hairy. LDFLAGS+= -Wl,-E -LDADD+= -Wl,--whole-archive ${DESTDIR}/usr/lib/librumpvfs.a \ - ${DESTDIR}/usr/lib/librump.a \ - -Wl,--no-whole-archive +LDADD+= \ + -Wl,--whole-archive \ + ${DESTDIR}/usr/lib/librumpvfs_nofifofs.a \ + ${DESTDIR}/usr/lib/librumpvfs.a \ + ${DESTDIR}/usr/lib/librump.a \ + -Wl,--no-whole-archive + LDADD+= -lrumpuser -lpthread DPADD+= ${LIBRUMPVFS} ${LIBRUMP} ${LIBRUMPUSER}