]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
meson: Drop meson version compare for fuzz test
authorJan Janssen <medhefgo@web.de>
Sat, 11 Dec 2021 22:08:20 +0000 (23:08 +0100)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Sun, 12 Dec 2021 02:51:03 +0000 (11:51 +0900)
We are depending on meson >= 0.53.2 now, so this check can be dropped.

test/fuzz/meson.build

index 8ae8e23fa577681b8a6bb63867f2d80b25fe9a3a..30e26b09cff7c0fb3bea12e8c1d5946ee1dc1c54 100644 (file)
@@ -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])