]> err.no Git - dpkg/commitdiff
dpkg-checkbuilddeps: fix a bug in handling of build-conflicts
authorRaphael Hertzog <hertzog@debian.org>
Sat, 19 Jan 2008 22:11:22 +0000 (23:11 +0100)
committerRaphael Hertzog <hertzog@debian.org>
Sat, 19 Jan 2008 22:12:09 +0000 (23:12 +0100)
ChangeLog
scripts/dpkg-checkbuilddeps.pl

index d70be27e3860ee843140fc2b01bb3f95e75a768b..de58c63a2f242ece47ad6981568bf97395b27382 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,9 @@
        Dpkg::Changelog::parse_changelog() instead of calling
        dpkg-parsechangelog.
 
+       * scripts/dpkg-checkbuilddeps.pl: Fix a bug left-over from the
+       switch to Dpkg::Control.
+
 2008-01-18  Raphael Hertzog  <hertzog@debian.org>
 
        * scripts/Dpkg/Shlibs/SymbolFile.pm,
index 1a82dbca7b75444e39035c6f27c17ec9fef58832..49338e40f0c189a393655bc5d88d84b2f3cb9e82 100755 (executable)
@@ -56,7 +56,7 @@ if (defined($fields->{"Build-Depends"})) {
                                    Dpkg::Deps::parse($fields->{"Build-Depends"},
                                         reduce_arch => 1), $facts);
 }
-if (defined($fields->{"Build-Conflicts"})) {
+if (defined($fields->{"Build-Conflicts"})) {
        push @conflicts, build_conflicts('Build-Conflicts',
                                          Dpkg::Deps::parse($fields->{"Build-Conflicts"},
                                             reduce_arch => 1, union => 1), $facts);