summary refs log tree commit diff
path: root/src/dhcp/meson.build
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2019-12-18 18:29:24 +0100
committerMichael Biebl <biebl@debian.org>2019-12-18 18:29:24 +0100
commit28028b26b3371756811e95d894f709f4b1207c00 (patch)
tree6fe7316fd743b51042db47601a8ef8814b3134ac /src/dhcp/meson.build
parente22609983008e1a669196ad64ba3a59ae8c76e0d (diff)
New upstream version 1.22.0 upstream/1.22.0
Diffstat (limited to 'src/dhcp/meson.build')
-rw-r--r--src/dhcp/meson.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dhcp/meson.build b/src/dhcp/meson.build
index c1f28be0..609fe663 100644
--- a/src/dhcp/meson.build
+++ b/src/dhcp/meson.build
@@ -1,6 +1,6 @@
 name = 'nm-dhcp-helper'
 
-cflags = [
+c_flags = [
   '-DG_LOG_DOMAIN="@0@"'.format(name),
   '-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_GLIB',
 ]
@@ -8,8 +8,8 @@ cflags = [
 executable(
   name,
   name + '.c',
-  dependencies: libnm_core_dep,
-  c_args: cflags,
+  dependencies: glib_nm_default_dep,
+  c_args: c_flags,
   link_args: ldflags_linker_script_binary,
   link_depends: linker_script_binary,
   install: true,