Module Name: src
Committed By: uwe
Date: Mon Apr 24 18:54:22 UTC 2023
Modified Files:
src/usr.bin/rump_allserver: Makefile
Log Message:
rump_allserver: trim down the list of libraries
Now that cyclic dependencies are (mostly) broken, we can drop repeated
-l instances that worked around those cycles. Links on sun2.
To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/usr.bin/rump_allserver/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/rump_allserver/Makefile
diff -u src/usr.bin/rump_allserver/Makefile:1.15 src/usr.bin/rump_allserver/Makefile:1.16
--- src/usr.bin/rump_allserver/Makefile:1.15 Mon Nov 1 21:37:33 2021
+++ src/usr.bin/rump_allserver/Makefile Mon Apr 24 18:54:22 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.15 2021/11/01 21:37:33 nia Exp $
+# $NetBSD: Makefile,v 1.16 2023/04/24 18:54:22 uwe Exp $
#
PROG= rump_allserver
@@ -14,7 +14,8 @@ RUMPTOP=${.CURDIR}/../../sys/rump
.include "${RUMPTOP}/net/Makefile.rumpnetcomp"
LDADD+= ${RUMPDEVLDADD} ${RUMPFSLDADD} ${RUMPKERNLDADD} ${RUMPNETLDADD}
-LDADD+= -lrumpdev -lrumpnet -lrumpvfs -lrump -lrumpvfs -lrumpvfs_nofifofs -lrump -lrumpuser -lpthread
+LDADD+= -lrumpdev -lrumpnet -lrumpvfs -lrumpvfs_nofifofs
+LDADD+= -lrump -lrumpuser -lpthread
.if ${RUMP_SANITIZE:Uno} != "no"
LDADD+= -fsanitize=${RUMP_SANITIZE}