This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch master in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=6b8897bad85394b2737e609419ad3ebd7ee5b008 commit 6b8897bad85394b2737e609419ad3ebd7ee5b008 Author: Guillem Jover <[email protected]> AuthorDate: Wed Oct 10 09:40:00 2018 +0200 Dpkg::Shlibs::Objdump: Remove unused Dpkg::IPC import The spawn() call was removed but not the matching import. Fixes: commit 8ae966ae7d3635b8359829085db4262923ceae96 --- debian/changelog | 1 + scripts/Dpkg/Shlibs/Objdump.pm | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index f5face124..5ef764d80 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,7 @@ dpkg (1.19.3) UNRELEASED; urgency=medium - Dpkg::Vendor::Ubuntu: Fix buildflags override after default setting move. Based on a patch by Iain Lane <[email protected]> and Adam Conrad <[email protected]>. Closes: #915881 + - Dpkg::Shlibs::Objdump: Remove unused Dpkg::IPC import. * Documentation: - dpkg(1): Clarify --remove action. Closes: #914478 - dpkg-query(1): Clarify --list option behavior when no arguments are diff --git a/scripts/Dpkg/Shlibs/Objdump.pm b/scripts/Dpkg/Shlibs/Objdump.pm index d0a7b56cb..d3a94113e 100644 --- a/scripts/Dpkg/Shlibs/Objdump.pm +++ b/scripts/Dpkg/Shlibs/Objdump.pm @@ -25,7 +25,6 @@ use Dpkg::Gettext; use Dpkg::ErrorHandling; use Dpkg::Path qw(find_command); use Dpkg::Arch qw(debarch_to_gnutriplet get_build_arch get_host_arch); -use Dpkg::IPC; # Decide which objdump to call our $OBJDUMP = 'objdump'; -- Dpkg.Org's dpkg

