diff options
author | Guillem Jover <guillem@debian.org> | 2017-02-06 03:52:50 +0100 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2018-03-25 05:45:47 +0200 |
commit | 83272497c5be8c4e703ab179906cf904465fe775 (patch) | |
tree | 6990ee5bd2ccc0bb86a8ad7709071c38d220bb75 /scripts/dpkg-checkbuilddeps.pl | |
parent | f7488217a506871f1aed58373220a76ea2e170ab (diff) | |
download | dpkg-83272497c5be8c4e703ab179906cf904465fe775.tar.gz |
Dpkg::Deps: Accept $archqual for add_provided_package() method
Diffstat (limited to 'scripts/dpkg-checkbuilddeps.pl')
-rwxr-xr-x | scripts/dpkg-checkbuilddeps.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dpkg-checkbuilddeps.pl b/scripts/dpkg-checkbuilddeps.pl index 80b309f14..738afa042 100755 --- a/scripts/dpkg-checkbuilddeps.pl +++ b/scripts/dpkg-checkbuilddeps.pl @@ -173,7 +173,7 @@ sub parse_status { { $facts->add_provided_package($_->{package}, $_->{relation}, $_->{version}, - $package); + $package, $_->{archqual}); } } } |