From: Zbigniew Jędrzejewski-Szmek Date: Wed, 11 Nov 2020 13:37:07 +0000 (+0100) Subject: meson: use "_" as separator in test names X-Git-Tag: v247-rc2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ca121e20c42219e3bc4e5cb63dcc96cc5eae2879;p=thirdparty%2Fsystemd.git meson: use "_" as separator in test names ":" is prettier, but meson 0.56+ doesn't like it: src/systemd/meson.build:73: DEPRECATION: ":" is not allowed in test name "cc-sd-bus.h:c", it has been replaced with "_" src/systemd/meson.build:73: DEPRECATION: ":" is not allowed in test name "cc-sd-bus.h:c-ansi", it has been replaced with "_" ... Fixes #17568. --- diff --git a/src/systemd/meson.build b/src/systemd/meson.build index f585b2d75b1..088dd432f01 100644 --- a/src/systemd/meson.build +++ b/src/systemd/meson.build @@ -68,7 +68,7 @@ endif foreach header : _systemd_headers + _not_installed_headers + ['../libudev/libudev.h'] foreach opt : opts - name = ''.join(['cc-', header.split('/')[-1], ':'] + opt) + name = ''.join(['cc-', header.split('/')[-1], '_'] + opt) if want_tests != 'false' test(name, check_compilation_sh,