Author: adsb
Date: 2009-02-02 22:12:03 +0000 (Mon, 02 Feb 2009)
New Revision: 1809

Modified:
   trunk/debian/changelog
   trunk/scripts/licensecheck.pl
Log:
Fix a bug in a regular expression which meant that .h files weren't
included in the default list of files to search.

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog      2009-02-01 18:44:03 UTC (rev 1808)
+++ trunk/debian/changelog      2009-02-02 22:12:03 UTC (rev 1809)
@@ -10,6 +10,8 @@
     + Identify another form of GPL wording.
     + Add .xs (Perl XS files) to the default list of files to process.
       (Closes: #513770)
+    + Fix a bug in a regular expression which meant that .h files weren't
+      included in the default list of files to search.
   * README.newscripts: Correct the "svn propset" syntax added in the previous
     upload.
 

Modified: trunk/scripts/licensecheck.pl
===================================================================
--- trunk/scripts/licensecheck.pl       2009-02-01 18:44:03 UTC (rev 1808)
+++ trunk/scripts/licensecheck.pl       2009-02-02 22:12:03 UTC (rev 1809)
@@ -151,7 +151,7 @@
 $default_ignore_regex =~ s/^#.*$//mg;
 $default_ignore_regex =~ s/\n//sg;
 
-my $default_check_regex = 
'\.(c(c|pp|xx)?|h(h|pp|xx)|f(77|90)?|p(l|m)|xs|sh|php|py|rb|java|el|sc(i|e)|cs)$';
+my $default_check_regex = 
'\.(c(c|pp|xx)?|h(h|pp|xx)?|f(77|90)?|p(l|m)|xs|sh|php|py|rb|java|el|sc(i|e)|cs)$';
 
 my $modified_conf_msg;
 



-- 
To unsubscribe, send mail to [email protected].

Reply via email to