[meson] split fuzzer_ldflags before use

This commit is contained in:
Ebrahim Byagowi 2020-07-08 01:06:30 +04:30 committed by GitHub
parent 747f65f9ef
commit e04050e3b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ foreach file_name : tests
if get_option('fuzzer_ldflags') == '' if get_option('fuzzer_ldflags') == ''
sources += 'main.cc' sources += 'main.cc'
else else
fuzzer_ldflags += get_option('fuzzer_ldflags') fuzzer_ldflags += get_option('fuzzer_ldflags').split()
endif endif
exe = executable(test_name, sources, exe = executable(test_name, sources,