]> err.no Git - dpkg/commitdiff
Fix dpkg-checkbuilddeps calling of parsedep. It wasn't setting use_arch.
authorAdam Heath <doogie@debian.org>
Sat, 25 Oct 2003 17:48:06 +0000 (17:48 +0000)
committerAdam Heath <doogie@debian.org>
Sat, 25 Oct 2003 17:48:06 +0000 (17:48 +0000)
ChangeLog
debian/changelog
scripts/dpkg-checkbuilddeps.pl

index d6ada642a076954acb1633a7c768f9a243cfa731..49c005d185c9092d64fb68da1909f0ca8749c6e9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sat Oct 25 12:47:22 CDT 2003 Adam Heath <doogie@debian.org>
+  * scripts/dpkg-checkbuilddeps.pl: Fix dpkg-checkbuilddeps calling of
+    parsedep.  It wasn't setting use_arch.
+
 Tue Sep 23 12:20:35 CDT 2003 Adam Heath <doogie@debian.org>
 
   * configure.in: Add man/es/Makefile.
index cae1156aef379a9f2d845b36793936094de9339e..4b53d6c2c4e1b0d29d51dce10b5d38f133293de1 100644 (file)
@@ -50,6 +50,8 @@ dpkg (1.10.16) unstable; urgency=low
     Fix Danish translation of(was missing the leading space): " does not
     appear to be available\n"  Closes: #192972
   * Fix md5sum when handling large files.  Closes: #162691
+  * Fix dpkg-checkbuilddeps calling of parsedep.  It wasn't setting
+    use_arch.  Closes: #212796.
 
  -- Adam Heath <doogie@debian.org>  Tue, 23 Sep 2003 12:12:38 -0500
 
index e881f4849d465168135265d76880384bd8bd31b3..6f29ef2d67051df538716a3900fb33beed0d988b 100755 (executable)
@@ -41,16 +41,16 @@ local $/='';
 
 my $dep_regex=qr/[ \t]*(([^\n]+|\n[ \t])*)\s/; # allow multi-line
 if (defined($fi{"C Build-Depends"})) {
-       push @unmet, build_depends(parsedep($fi{"C Build-Depends"}), @status);
+       push @unmet, build_depends(parsedep($fi{"C Build-Depends"}, 1), @status);
 }
 if (defined($fi{"C Build-Conflicts"})) {
-       push @unmet, build_conflicts(parsedep($fi{"C Build-Conflicts"}), @status);
+       push @unmet, build_conflicts(parsedep($fi{"C Build-Conflicts"}, 1), @status);
 }
 if (! $binary_only && defined($fi{"C Build-Depends-Indep"})) {
-       push @unmet, build_depends(parsedep($fi{"C Build-Depends-Indep"}), @status);
+       push @unmet, build_depends(parsedep($fi{"C Build-Depends-Indep"}, 1), @status);
 }
 if (! $binary_only && defined($fi{"C Build-Conflicts-Indep"})) {
-       push @unmet, build_conflicts(parsedep($fi{"C Build-Conflicts-Indep"}), @status);
+       push @unmet, build_conflicts(parsedep($fi{"C Build-Conflicts-Indep"}, 1), @status);
 }
 
 if (@unmet) {