[libvirt PATCH 12/13] syntax-check: Drop sc_ prefix when adding checks to meson

Andrea Bolognani abologna at redhat.com
Mon May 23 17:37:53 UTC 2022


All checks are added to the syntax-check suite, and this name is
displayed prominently in the output of 'meson test', so there
really is no need to include the sc_ prefix too.

Signed-off-by: Andrea Bolognani <abologna at redhat.com>
---
 build-aux/meson.build | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build-aux/meson.build b/build-aux/meson.build
index 96562a4f4a..fcd231a386 100644
--- a/build-aux/meson.build
+++ b/build-aux/meson.build
@@ -47,7 +47,7 @@ configure_file(
 
 rc = run_command(
   'sed', '-n',
-  's/^\\(sc_[a-zA-Z0-9_-]*\\):.*/\\1/p',
+  's/^sc_\\([a-zA-Z0-9_-]*\\):.*/\\1/p',
   meson.current_source_dir() / 'syntax-check.mk',
   check: true,
 )
@@ -62,7 +62,7 @@ if git
     test(
       target,
       make_prog,
-      args: [ '-C', meson.current_build_dir(), target ],
+      args: [ '-C', meson.current_build_dir(), 'sc_ at 0@'.format(target) ],
       depends: [
         potfiles_dep,
       ],
-- 
2.35.3



More information about the libvir-list mailing list