Skip to content

Commit ca121e2

Browse files
keszybzpoettering
authored andcommitted
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 systemd#17568.
1 parent 23dce98 commit ca121e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/systemd/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ endif
6868

6969
foreach header : _systemd_headers + _not_installed_headers + ['../libudev/libudev.h']
7070
foreach opt : opts
71-
name = ''.join(['cc-', header.split('/')[-1], ':'] + opt)
71+
name = ''.join(['cc-', header.split('/')[-1], '_'] + opt)
7272
if want_tests != 'false'
7373
test(name,
7474
check_compilation_sh,

0 commit comments

Comments
 (0)