From 23bd02110cbb99d102c2478a9ba8085d8ee6a9fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1igo=20Mart=C3=ADnez?= Date: Wed, 11 Sep 2019 07:54:23 +0200 Subject: [PATCH] meson: Rename the compiler flags variable Renamed the variable holding the compiler flags to be consistent with different meson ports. This naming pattern improves the use of different compiler flags in environments with multiple languages. --- src/dhcp/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dhcp/meson.build b/src/dhcp/meson.build index 593e9d5ebc..609fe663ac 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', ] @@ -9,7 +9,7 @@ executable( name, name + '.c', dependencies: glib_nm_default_dep, - c_args: cflags, + c_args: c_flags, link_args: ldflags_linker_script_binary, link_depends: linker_script_binary, install: true,