diff options
author | Thomas Haller <thaller@redhat.com> | 2019-04-15 16:46:54 +0200 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2019-04-18 18:59:09 +0200 |
commit | c27ad37c278461fd783b6db56844683ab3088345 (patch) | |
tree | 97eea4ca990b932be9b4c7867eacc06d9398c607 /clients | |
parent | af07ed01c04867e281cc3982a7ab0d244d4f8e2e (diff) | |
download | NetworkManager-c27ad37c278461fd783b6db56844683ab3088345.tar.gz |
build/meson: rename "nm_core_dep" to "libnm_core_dep"
The library is called "libnm_core". So the dependency should be called
"libnm_core_dep", like in all other cases.
Diffstat (limited to 'clients')
-rw-r--r-- | clients/cli/meson.build | 2 | ||||
-rw-r--r-- | clients/common/tests/meson.build | 2 | ||||
-rw-r--r-- | clients/meson.build | 2 | ||||
-rw-r--r-- | clients/tui/meson.build | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/clients/cli/meson.build b/clients/cli/meson.build index 11fe1cd153..396466a221 100644 --- a/clients/cli/meson.build +++ b/clients/cli/meson.build @@ -22,7 +22,7 @@ deps = [ libnm_dep, libnmc_base_dep, libnmc_dep, - nm_core_dep, + libnm_core_dep, readline_dep, ] diff --git a/clients/common/tests/meson.build b/clients/common/tests/meson.build index 060bab48c5..3eb32a4726 100644 --- a/clients/common/tests/meson.build +++ b/clients/common/tests/meson.build @@ -4,7 +4,7 @@ deps = [ libnm_dep, libnmc_dep, libnmc_base_dep, - nm_core_dep, + libnm_core_dep, ] exe = executable( diff --git a/clients/meson.build b/clients/meson.build index 1b98ebcbe9..76d39fa78b 100644 --- a/clients/meson.build +++ b/clients/meson.build @@ -2,7 +2,7 @@ name = 'nm-online' deps = [ libnm_dep, - nm_core_dep, + libnm_core_dep, ] clients_cflags = [ diff --git a/clients/tui/meson.build b/clients/tui/meson.build index e7c44384fa..837645a61e 100644 --- a/clients/tui/meson.build +++ b/clients/tui/meson.build @@ -2,7 +2,7 @@ name = 'nmtui' deps = [ newt_dep, - nm_core_dep, + libnm_core_dep, ] cflags = clients_cflags + [ |