mirror of
https://github.com/systemd/systemd.git
synced 2024-12-22 17:35:35 +03:00
meson: use ternary op for brevity
This commit is contained in:
parent
7eff3e2cdb
commit
3e0cf73243
@ -46,11 +46,7 @@ else
|
||||
endif
|
||||
|
||||
fuzz_c_args = get_option('c_args')
|
||||
if cxx_cmd != ''
|
||||
fuzz_cpp_args = get_option('cpp_args')
|
||||
else
|
||||
fuzz_cpp_args = []
|
||||
endif
|
||||
fuzz_cpp_args = cxx_cmd != '' ? get_option('cpp_args') : []
|
||||
|
||||
sanitize_address_undefined = custom_target(
|
||||
'sanitize-address-undefined-fuzzers',
|
||||
|
Loading…
Reference in New Issue
Block a user