summaryrefslogtreecommitdiff
path: root/scripts/dpkg-shlibdeps.pl
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2017-05-18 06:25:26 +0200
committerGuillem Jover <guillem@debian.org>2017-05-20 05:21:33 +0200
commit7f779d971f1f9af460cb2286047ab97e854796ac (patch)
treeb3beeed3ceecce88fa9cb411ea65bdab2fca57ac /scripts/dpkg-shlibdeps.pl
parent810aa7aec63ded6de321bab69cd1b5e725a0fff1 (diff)
downloaddpkg-7f779d971f1f9af460cb2286047ab97e854796ac.tar.gz
Dpkg::Util: Remove and replace with core module List::Util
Our current minimal Perl version contains a new enough List::Util module implementing none and any, and several other functions.
Diffstat (limited to 'scripts/dpkg-shlibdeps.pl')
-rwxr-xr-xscripts/dpkg-shlibdeps.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dpkg-shlibdeps.pl b/scripts/dpkg-shlibdeps.pl
index f035093b7..168741425 100755
--- a/scripts/dpkg-shlibdeps.pl
+++ b/scripts/dpkg-shlibdeps.pl
@@ -24,6 +24,7 @@
use strict;
use warnings;
+use List::Util qw(any none);
use POSIX qw(:errno_h);
use Cwd qw(realpath);
use File::Basename qw(dirname);
@@ -31,7 +32,6 @@ use File::Basename qw(dirname);
use Dpkg ();
use Dpkg::Gettext;
use Dpkg::ErrorHandling;
-use Dpkg::Util qw(:list);
use Dpkg::Path qw(relative_to_pkg_root guess_pkg_root_dir
check_files_are_the_same get_control_path);
use Dpkg::Version;