[libvirt] fix "make syntax-check" vs. new .ico file with trailing TAB

One of the new (binary) .ico files has a TAB just before a newline, and that triggers a "make syntax-check" failure. This gives all *.ico files a free pass. (also sorted the file)
From 11096480dfb54fc179b3854d3f81739f2d2ef273 Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering@redhat.com> Date: Thu, 16 Oct 2008 15:05:16 +0200 Subject: [PATCH] build: exempt *.ico files from the trailing blank check
* .x-sc_trailing_blank: Add \.ico$ to the list. --- .x-sc_trailing_blank | 5 +++-- ChangeLog | 5 +++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.x-sc_trailing_blank b/.x-sc_trailing_blank index 8b3ec89..de3369e 100644 --- a/.x-sc_trailing_blank +++ b/.x-sc_trailing_blank @@ -1,6 +1,7 @@ -\.png$ \.fig$ \.gif$ -^NEWS$ +\.ico$ +\.png$ ^ChangeLog$ +^NEWS$ ^docs/.* diff --git a/ChangeLog b/ChangeLog index 2aff530..322f837 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Oct 16 15:04:36 +0200 Jim Meyering <meyering@redhat.com> + + build: exempt *.ico files from the trailing blank check + * .x-sc_trailing_blank: Add \.ico$ to the list. + Wed Oct 16 14:03:00 CEST 2008 Chris Lalancette <clalance@redhat.com> * "make syntax-check" was complaining that network_driver.c was -- 1.6.0.2.98.gc82e

On Thu, Oct 16, 2008 at 03:08:47PM +0200, Jim Meyering wrote:
One of the new (binary) .ico files has a TAB just before a newline, and that triggers a "make syntax-check" failure. This gives all *.ico files a free pass.
I would not venture trying to guess if TAB could/should be converted in ico files, skipping sounds just fine, +1 A typical example for the suggested rule I just posted of pushing immediately to CVS to keep 'make syntax-check' working Daniel -- Daniel Veillard | libxml Gnome XML XSLT toolkit http://xmlsoft.org/ daniel@veillard.com | Rpmfind RPM search engine http://rpmfind.net/ http://veillard.com/ | virtualization library http://libvirt.org/
participants (2)
-
Daniel Veillard
-
Jim Meyering