summaryrefslogtreecommitdiff
path: root/examples/C
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2019-04-15 16:46:54 +0200
committerThomas Haller <thaller@redhat.com>2019-04-15 19:54:59 +0200
commitddd7ca084b8030881ab5fc5668da031fac84d565 (patch)
treefc15cd366dc3e1529294728ce940ac2dc8c36a1f /examples/C
parent3a214c4bd536673554be9e7e84a1f1c40285f917 (diff)
downloadNetworkManager-th/shared-library-refactoring-1.tar.gz
build/meson: rename "nm_core_dep" to "libnm_core_dep"th/shared-library-refactoring-1
The library is called "libnm_core". So the dependency should be called "libnm_core_dep", like in all other cases.
Diffstat (limited to 'examples/C')
-rw-r--r--examples/C/glib/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/C/glib/meson.build b/examples/C/glib/meson.build
index 1c817163b6..47d64bddf9 100644
--- a/examples/C/glib/meson.build
+++ b/examples/C/glib/meson.build
@@ -14,6 +14,6 @@ foreach example: examples
example[0],
[example[0] + '.c'] + example[1],
include_directories: example[2],
- dependencies: [nm_core_dep] + example[3],
+ dependencies: [libnm_core_dep] + example[3],
)
endforeach