From: Adam Heath Date: Sat, 25 Oct 2003 17:48:06 +0000 (+0000) Subject: Fix dpkg-checkbuilddeps calling of parsedep. It wasn't setting use_arch. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=956c58aaf38ac8b9410fa6e99c9a6b52dff25255;p=dpkg Fix dpkg-checkbuilddeps calling of parsedep. It wasn't setting use_arch. --- diff --git a/ChangeLog b/ChangeLog index d6ada642..49c005d1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sat Oct 25 12:47:22 CDT 2003 Adam Heath + * 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 * configure.in: Add man/es/Makefile. diff --git a/debian/changelog b/debian/changelog index cae1156a..4b53d6c2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Tue, 23 Sep 2003 12:12:38 -0500 diff --git a/scripts/dpkg-checkbuilddeps.pl b/scripts/dpkg-checkbuilddeps.pl index e881f484..6f29ef2d 100755 --- a/scripts/dpkg-checkbuilddeps.pl +++ b/scripts/dpkg-checkbuilddeps.pl @@ -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) {