From ca121e20c42219e3bc4e5cb63dcc96cc5eae2879 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Wed, 11 Nov 2020 14:37:07 +0100 Subject: [PATCH] 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. --- src/systemd/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/systemd/meson.build b/src/systemd/meson.build index f585b2d75b..088dd432f0 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,