lintian: r992 - in trunk: checks debian
Author: he
Date: 2007-11-29 12:30:20 +0100 (Thu, 29 Nov 2007)
New Revision: 992
Modified:
trunk/checks/binaries
trunk/debian/changelog
Log:
* checks/binaries:
+ [HE] Fix RegEx to re-enable 'binary-in-etc' and
'arch-dependent-file-in-usr-share' checks. (Closes: #452336)
Modified: trunk/checks/binaries
===================================================================
--- trunk/checks/binaries 2007-11-29 04:48:24 UTC (rev 991)
+++ trunk/checks/binaries 2007-11-29 11:30:20 UTC (rev 992)
@@ -178,11 +178,11 @@
# ELF?
next unless $info =~ m/^[^,]*\bELF\b/o;
- if ($file =~ m,^etc/,) {
+ if ($file =~ m,^\./etc/,) {
tag "binary-in-etc", "$file";
}
- if ($file =~ m,^usr/share/,) {
+ if ($file =~ m,^\./usr/share/,) {
tag "arch-dependent-file-in-usr-share", "$file";
}
Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog 2007-11-29 04:48:24 UTC (rev 991)
+++ trunk/debian/changelog 2007-11-29 11:30:20 UTC (rev 992)
@@ -1,5 +1,8 @@
lintian (1.23.37) UNRELEASED; urgency=low
+ * checks/binaries:
+ + [HE] Fix RegEx to re-enable 'binary-in-etc' and
+ 'arch-dependent-file-in-usr-share' checks. (Closes: #452336)
* checks/common_data.pm:
+ [RA] Add Dm-Upload-Allowed as a recognized control field.
* checks/control-files:
Reply to: