[libvirt] [PATCH 1/3] Exclude files in VC_LIST_ALWAYS_EXCLUDE_REGEX from bracket-spacing-check

Yuto KAWAMURA(kawamuray) kawamuray.dadada at gmail.com
Wed Sep 18 04:18:51 UTC 2013


From: "Yuto KAWAMURA(kawamuray)" <kawamuray.dadada at gmail.com>

Files specified in VC_LIST_ALWAYS_EXCLUDE_REGEX should excluded from
bracket-spacing-check too.
---
 cfg.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cfg.mk b/cfg.mk
index e6584e8..3a31815 100644
--- a/cfg.mk
+++ b/cfg.mk
@@ -899,7 +899,7 @@ _autogen:
 syntax-check: $(top_srcdir)/HACKING bracket-spacing-check
 
 bracket-spacing-check:
-	$(AM_V_GEN)files=`$(VC_LIST) | grep '\.c$$'`; \
+	$(AM_V_GEN)files=`$(VC_LIST) | grep '\.c$$' | grep -Ev -e '$(VC_LIST_ALWAYS_EXCLUDE_REGEX)'`; \
 	$(PERL) $(top_srcdir)/build-aux/bracket-spacing.pl $$files || \
 	  { echo '$(ME): incorrect whitespace, see HACKING for rules' 1>&2; \
 	    exit 1; }
-- 
1.8.1.5




More information about the libvir-list mailing list