mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-07 16:00:21 +01:00
core: fix libndp linking
We were linking libndp into the NetworkManager binary, but it ought to be marked as a dependency of libNetworkManager, in case a test exercises that code.
This commit is contained in:
parent
b28f6526c2
commit
4308a8305a
2 changed files with 3 additions and 3 deletions
|
|
@ -57,7 +57,7 @@ sbin_PROGRAMS = NetworkManager
|
|||
NetworkManager_SOURCES = \
|
||||
main.c
|
||||
|
||||
NetworkManager_LDADD = libNetworkManager.la $(LIBNDP_LIBS)
|
||||
NetworkManager_LDADD = libNetworkManager.la
|
||||
|
||||
noinst_LTLIBRARIES = libNetworkManager.la
|
||||
|
||||
|
|
@ -364,6 +364,7 @@ libNetworkManager_la_LIBADD = \
|
|||
$(LIBNL_LIBS) \
|
||||
$(POLKIT_LIBS) \
|
||||
$(SYSTEMD_LOGIN_LIBS) \
|
||||
$(LIBNDP_LIBS) \
|
||||
$(LIBDL) \
|
||||
$(LIBM)
|
||||
|
||||
|
|
|
|||
|
|
@ -26,6 +26,5 @@ noinst_PROGRAMS = \
|
|||
rdisc_SOURCES = \
|
||||
rdisc.c
|
||||
rdisc_LDADD = \
|
||||
$(top_builddir)/src/libNetworkManager.la \
|
||||
$(LIBNDP_LIBS)
|
||||
$(top_builddir)/src/libNetworkManager.la
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue