From: Daniel Wagner Date: Fri, 13 Jan 2023 13:04:19 +0000 (+0100) Subject: build: Use list for dbus_static_flags X-Git-Tag: dbus-1.15.4~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cd1a9bb09a4e9330f8669fb6d385b1e095f97fc2;p=thirdparty%2Fdbus.git 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 --- diff --git a/meson.build b/meson.build index 314230078..17b2b61dd 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