summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2020-11-11 14:37:07 +0100
committerLennart Poettering <lennart@poettering.net>2020-11-11 16:58:05 +0100
commitca121e20c42219e3bc4e5cb63dcc96cc5eae2879 (patch)
tree327308cec2027370d3c0858de6e0923518533e59
parent23dce98e89616092007005692a4574ab908db5a6 (diff)
downloadsystemd-ca121e20c42219e3bc4e5cb63dcc96cc5eae2879.tar.gz
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.
-rw-r--r--src/systemd/meson.build2
1 files changed, 1 insertions, 1 deletions
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,