]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
build: Fix syntax check in VPATH
authorJiri Denemark <jdenemar@redhat.com>
Mon, 27 Mar 2017 14:48:19 +0000 (16:48 +0200)
committerJiri Denemark <jdenemar@redhat.com>
Mon, 27 Mar 2017 14:53:18 +0000 (16:53 +0200)
Matching the beginning of a path in syntax check does not work because
each path is enriched with a prefix of the source tree.

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
cfg.mk

diff --git a/cfg.mk b/cfg.mk
index ceca27f5d2b8b34358b1ceac6a9b40d6dbea3ac6..89e03ca0e32c68bdeb6ba8087a504a3ab9d7ef14 100644 (file)
--- a/cfg.mk
+++ b/cfg.mk
@@ -666,7 +666,7 @@ sc_prohibit_useless_translation:
        halt='found useless translation'                                \
          $(_sc_search_regexp)
        @prohibit='\<N?_ *\('                                           \
-       in_vc_files='^(tests|examples)/'                                \
+       in_vc_files='(tests|examples)/'                                 \
        halt='no translations in tests or examples'                     \
          $(_sc_search_regexp)
 
@@ -808,7 +808,7 @@ sc_prohibit_semicolon_at_eol_in_python:
 # mymain() in test files should use return, not exit, for nicer output
 sc_prohibit_exit_in_tests:
        @prohibit='\<exit *\('                                          \
-       in_vc_files='^tests/.*\.c$$'                                    \
+       in_vc_files='tests/.*\.c$$'                                     \
        halt='use return, not exit(), in tests'                         \
          $(_sc_search_regexp)
 
@@ -878,7 +878,7 @@ sc_prohibit_wrong_filename_in_comment:
 
 sc_prohibit_virConnectOpen_in_virsh:
        @prohibit='\bvirConnectOpen[a-zA-Z]* *\('                      \
-       in_vc_files='^tools/virsh-.*\.[ch]$$'                          \
+       in_vc_files='tools/virsh-.*\.[ch]$$'                           \
        halt='Use vshConnect() in virsh instead of virConnectOpen*'    \
          $(_sc_search_regexp)