From: Jan Janssen Date: Sat, 11 Dec 2021 22:08:20 +0000 (+0100) Subject: meson: Drop meson version compare for fuzz test X-Git-Tag: v250-rc3~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d2a58f0edbad890f6d93126dc80cf6a6837b2f59;p=thirdparty%2Fsystemd.git meson: Drop meson version compare for fuzz test We are depending on meson >= 0.53.2 now, so this check can be dropped. --- diff --git a/test/fuzz/meson.build b/test/fuzz/meson.build index 8ae8e23fa57..30e26b09cff 100644 --- a/test/fuzz/meson.build +++ b/test/fuzz/meson.build @@ -1,13 +1,5 @@ # SPDX-License-Identifier: LGPL-2.1-or-later -# The 'optimization' option was introduced in meson 0.48.0, so let's keep -# the code compatible with older versions as well -if meson.version().version_compare('>=0.48.0') - optimization = '--optimization=@0@'.format(get_option('optimization')) -else - optimization = '' -endif - sanitize_address_undefined = custom_target( 'sanitize-address-undefined-fuzzers', output : 'sanitize-address-undefined-fuzzers', @@ -15,7 +7,7 @@ sanitize_address_undefined = custom_target( project_source_root, '@OUTPUT@', 'fuzzers', - '-Dfuzz-tests=true -Db_lundef=false -Db_sanitize=address,undefined @0@'.format(optimization), + '-Dfuzz-tests=true -Db_lundef=false -Db_sanitize=address,undefined --optimization=@0@'.format(get_option('optimization')), ' '.join(cc.cmd_array()), cxx_cmd])