From cd1a9bb09a4e9330f8669fb6d385b1e095f97fc2 Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Fri, 13 Jan 2023 14:04:19 +0100 Subject: build: Use list for dbus_static_flags Meson complains that it is only allowed to concatenate list to lists and not strings. Signed-off-by: Daniel Wagner Origin: https://gitlab.freedesktop.org/dbus/dbus/-/merge_requests/388 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 31423007..17b2b61d 100644 --- a/meson.build +++ b/meson.build @@ -179,7 +179,7 @@ if host_os.contains('solaris') endif dbus_static_flags = ( get_option('default_library') == 'static' - ? '-DDBUS_STATIC_BUILD' + ? [ '-DDBUS_STATIC_BUILD' ] : [] ) compile_args += dbus_static_flags -- cgit v1.2.1