Module Name:    src
Committed By:   he
Date:           Tue Jun  9 11:18:50 UTC 2009

Modified Files:
        src/tests/rump/rumpkern: Makefile

Log Message:
Apparently, there's not a clear dependency ordering for the libraries,
this becomes apparent when linking statically (e.g. as for sun2).
Add an extra instance of -lrump to the library list so that it can be
linked statically as well.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/rump/rumpkern/Makefile

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

Modified files:

Index: src/tests/rump/rumpkern/Makefile
diff -u src/tests/rump/rumpkern/Makefile:1.1 src/tests/rump/rumpkern/Makefile:1.2
--- src/tests/rump/rumpkern/Makefile:1.1	Sat May  2 16:02:19 2009
+++ src/tests/rump/rumpkern/Makefile	Tue Jun  9 11:18:50 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2009/05/02 16:02:19 pooka Exp $
+# $NetBSD: Makefile,v 1.2 2009/06/09 11:18:50 he Exp $
 
 .include <bsd.own.mk>
 
@@ -6,6 +6,6 @@
 
 TESTS_C=	t_modcmd
 
-LDADD+=		-lrumpvfs -lrump -lrumpuser -lpthread
+LDADD+=		-lrump -lrumpvfs -lrump -lrumpuser -lpthread
 
 .include <bsd.test.mk>

Reply via email to