From ab2dcc328913c126166a95bc6a2868efcb12f05b Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Thu, 4 Feb 2021 14:56:58 +0100 Subject: [PATCH] meson/build: fix c_args for libnmc This used c_flags, which was previously defined by dispatcher/meson.build, something unrelated entirely. --- clients/common/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/common/meson.build b/clients/common/meson.build index 6c1997a6a3..93c158f1b2 100644 --- a/clients/common/meson.build +++ b/clients/common/meson.build @@ -61,7 +61,7 @@ libnmc = static_library( 'nmc', sources: sources, dependencies: common_deps + [libnm_libnm_core_aux_dep], - c_args: c_flags, + c_args: common_c_flags, link_depends: settings_docs_source, )