The branch, master has been updated
       via  2dc6638e254500380e9cb4b3e375a296088930c3 (commit)
      from  5884d153fb6d94cb5af2fbcc809b83e5d47297cb (commit)


- Shortlog ------------------------------------------------------------
2dc6638 dpkg-checkbuilddeps: fix a bug in handling of build-conflicts

Summary of changes:
 ChangeLog                      |    3 +++
 scripts/dpkg-checkbuilddeps.pl |    2 +-
 2 files changed, 4 insertions(+), 1 deletions(-)
-----------------------------------------------------------------------
Details of changes:

commit 2dc6638e254500380e9cb4b3e375a296088930c3
Author: Raphael Hertzog <[EMAIL PROTECTED]>
Date:   Sat Jan 19 23:11:22 2008 +0100

    dpkg-checkbuilddeps: fix a bug in handling of build-conflicts

diff --git a/ChangeLog b/ChangeLog
index d70be27..de58c63 100644
--- 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  <[EMAIL PROTECTED]>
 
        * scripts/Dpkg/Shlibs/SymbolFile.pm,
diff --git a/scripts/dpkg-checkbuilddeps.pl b/scripts/dpkg-checkbuilddeps.pl
index 1a82dbc..49338e4 100755
--- a/scripts/dpkg-checkbuilddeps.pl
+++ b/scripts/dpkg-checkbuilddeps.pl
@@ -56,7 +56,7 @@ if (defined($fields->{"Build-Depends"})) {
                                    
Dpkg::Deps::parse($fields->{"Build-Depends"},
                                         reduce_arch => 1), $facts);
 }
-if (defined($fields->{"C 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);

-- 
dpkg's main repository


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to