summaryrefslogtreecommitdiff
path: root/src/dnsmasq
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2019-09-10 12:54:46 +0200
committerThomas Haller <thaller@redhat.com>2019-10-01 09:49:33 +0200
commit31f15167607a15c07723706ef993223378684086 (patch)
tree043315284dc42540f899acb24d6cac9a2655ea2b /src/dnsmasq
parent1066ddb3a1c1ab56e0214990665e96874476a397 (diff)
meson: Improve the src build file
The targets that involve the use of the `NetworkManager` library, built in the `src` build file have been improved by applying a set of changes: - Indentation has been fixed. - Set of objects used in targets have been grouped together. - Aritificial dependencies used to group dependencies and custom compiler flags have been removed and their use replaced with proper dependencies and compiler flags to avoid any confussion.
Diffstat (limited to 'src/dnsmasq')
-rw-r--r--src/dnsmasq/tests/meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dnsmasq/tests/meson.build b/src/dnsmasq/tests/meson.build
index 09ef52e505..6e4298997f 100644
--- a/src/dnsmasq/tests/meson.build
+++ b/src/dnsmasq/tests/meson.build
@@ -3,7 +3,8 @@ test_unit = 'test-dnsmasq-utils'
exe = executable(
test_unit,
test_unit + '.c',
- dependencies: test_nm_dep,
+ dependencies: libnetwork_manager_test_dep,
+ c_args: test_c_flags,
)
test(