build/meson: don't link static library libnm_client_impl with helper

Per convention, we shall no link our static libraries with other static
libraries of our own. The purpose is that we only link static libraries
at the end of each build product (that is, in executables, shared
libraries and shared modules).
This commit is contained in:
Thomas Haller 2021-02-24 20:08:05 +01:00
parent 4c98a45270
commit 20c955fd61
No known key found for this signature in database
GPG key ID: 29C2366E4DFC5728
2 changed files with 1 additions and 1 deletions

View file

@ -65,7 +65,6 @@ libnm_client_impl = static_library(
libudev_dep,
glib_dep,
],
link_with: libnm_log_null,
)
linker_script = join_paths(meson.current_source_dir(), 'libnm.ver')

View file

@ -29,6 +29,7 @@ foreach test_unit: test_units
libnm_base,
libnm_udev_aux,
libnm_systemd_shared,
libnm_log_null,
libnm_glib_aux,
libnm_std_aux,
libc_siphash,