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

Michal Privoznik mprivozn at redhat.com
Wed Sep 18 09:01:39 UTC 2013


On 18.09.2013 06:18, Yuto KAWAMURA(kawamuray) wrote:
> 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; }
> 

This shouldn't be needed. All the files in $VC_LIST_ALWAYS_EXCLUDE_REGEX
should be excluded automatically. If not, then gnulib's broken.

Michal




More information about the libvir-list mailing list