mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 00:14:32 +09:00
meson: use ternary op for brevity
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user