mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-03-28 19:10:41 +01:00
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 <dwagner@suse.de> Origin: https://gitlab.freedesktop.org/dbus/dbus/-/merge_requests/388
This commit is contained in:
parent
90a9482cca
commit
cd1a9bb09a
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue