]> git.ipfire.org Git - thirdparty/libvirt.git/commit
maint: fix syntax-check sc_prohibit_int_ijk exclude rule
authorPavel Hrdina <phrdina@redhat.com>
Mon, 23 May 2016 23:00:07 +0000 (01:00 +0200)
committerMartin Kletzander <mkletzan@redhat.com>
Mon, 3 Oct 2016 16:55:33 +0000 (18:55 +0200)
commit8123b6bc355a75772d07041196b970cea492f978
tree9469fd0ee6f7721971284e6e6bb9ac4549ea68bd
parent8f2b4e3a67daab34c4b1ceebb274a68dd38054b4
maint: fix syntax-check sc_prohibit_int_ijk exclude rule

Fix the regex for excluding files for this syntax-rule.  The rule "include/"
will not work, because we are matching the whole line like this
"^(...|include/|...)$ so we need to use "include/libvirt/libvirt.+".  The second
issue is that we are using only one '$' but there should be two of those at the
end.  The last small adjustment is to escape dots '.' so it match only dot.

Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
(cherry picked from commit a94efa50e253cb59a2925dca2705bce801f46fb1)
cfg.mk