]> err.no Git - dpkg/commitdiff
dpkg-source issued spurious warnings about fields defined with
authorFrank Lichtenheld <djpig@debian.org>
Sat, 17 Jun 2006 15:52:57 +0000 (15:52 +0000)
committerFrank Lichtenheld <djpig@debian.org>
Sat, 17 Jun 2006 15:52:57 +0000 (15:52 +0000)
XB-. They now get correctly suppressed. Closes: #374154

ChangeLog
debian/changelog
scripts/dpkg-source.pl

index 84ca949e47fef9ce3b87921c21941733fafa307f..254fc31fc708e99e3c7e3223147bb68bbfa9243d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-06-17  Frank Lichtenheld  <djpig@debian.org>
+
+       * scripts/dpkg-source.pl: Fix typo in regex that caused
+       spurious warnings for user defined fields even though they
+       used the correct XB- syntax.
+
 2006-06-16  Guillem Jover  <guillem@debian.org>
 
        * scripts/controllib.pl (parsechangelog): Move substvar initialization
index 12b6cc6b96bf67c9b14847147a6b169d10b7999e..649b57fa4e24fb5db30aa203642a04d76b533147 100644 (file)
@@ -15,6 +15,10 @@ dpkg (1.13.22~) UNRELEASED; urgency=low
   * Add missing comment serving as documentation about abort-remove on
     removal in dpkg.postinst (Justin Pryzby). Closes: #372145
   * Fix typo in dpkg-deb manpage (Robert Luberda). Closes: #373999
+  
+  [ Frank Lichtenheld ]
+  * dpkg-source issued spurious warnings about fields defined with
+    XB-. They now get correctly suppressed. Closes: #374154
 
   [ Updated dpkg Translations ]
   * Romanian (Eddy Petrişor).
index aefb6bdd2aa3fe368829915298c2540175b51114..ab6390e287af68fca79aab78dc698e9ae4839bfc 100755 (executable)
@@ -243,7 +243,7 @@ if ($opmode eq 'build') {
             } elsif (m/^(Package|Essential|Pre-Depends|Depends|Provides)$/i ||
                      m/^(Recommends|Suggests|Optional|Conflicts|Replaces)$/i ||
                      m/^(Enhances|Description|Section|Priority)$/i ||
-                     m/^X[CS]+-/i) {
+                     m/^X[BC]+-/i) {
             } else {
                 &unknown(_g("package's section of control info file"));
             }