summaryrefslogtreecommitdiff
path: root/scripts/dpkg-genbuildinfo.pl
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2018-04-29 01:26:10 +0200
committerGuillem Jover <guillem@debian.org>2018-05-03 01:40:57 +0200
commit94728ead2cc22af5043b16483aab1e4f5a50223c (patch)
treefa01cb2df8aa5d0c22012303adb3e1232a34fe60 /scripts/dpkg-genbuildinfo.pl
parent9f7e58acdf28043bce2dfaf24ba27bb878418658 (diff)
downloaddpkg-94728ead2cc22af5043b16483aab1e4f5a50223c.tar.gz
Revert "Dpkg::Deps: Accept $archqual for add_provided_package() method"
This reverts commit 83272497c5be8c4e703ab179906cf904465fe775. This commit introduced a regression in the author test suite. And there's a patch by Johannes 'josch' Schauer <josch@mister-muffin.de> which should be fixing this and other problems. If this is needed after all, we will need to refactor the functions first to take a hash instead of a long list of arguments.
Diffstat (limited to 'scripts/dpkg-genbuildinfo.pl')
-rwxr-xr-xscripts/dpkg-genbuildinfo.pl3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/dpkg-genbuildinfo.pl b/scripts/dpkg-genbuildinfo.pl
index c2916c2b2..96b06093a 100755
--- a/scripts/dpkg-genbuildinfo.pl
+++ b/scripts/dpkg-genbuildinfo.pl
@@ -115,8 +115,7 @@ sub parse_status {
deps_iterate($provides, sub {
my $dep = shift;
$facts->add_provided_package($dep->{package}, $dep->{relation},
- $dep->{version}, $package,
- $dep->{archqual});
+ $dep->{version}, $package);
});
}