diff options
author | Guillem Jover <guillem@debian.org> | 2017-05-18 06:25:26 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2017-05-20 05:21:33 +0200 |
commit | 7f779d971f1f9af460cb2286047ab97e854796ac (patch) | |
tree | b3beeed3ceecce88fa9cb411ea65bdab2fca57ac /scripts/dpkg-source.pl | |
parent | 810aa7aec63ded6de321bab69cd1b5e725a0fff1 (diff) | |
download | dpkg-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-source.pl')
-rwxr-xr-x | scripts/dpkg-source.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dpkg-source.pl b/scripts/dpkg-source.pl index dbb182f8c..c7414eb10 100755 --- a/scripts/dpkg-source.pl +++ b/scripts/dpkg-source.pl @@ -28,6 +28,7 @@ use strict; use warnings; +use List::Util qw(any none); use Cwd; use File::Basename; use File::Spec; @@ -35,7 +36,6 @@ use File::Spec; use Dpkg (); use Dpkg::Gettext; use Dpkg::ErrorHandling; -use Dpkg::Util qw(:list); use Dpkg::Arch qw(:operators); use Dpkg::Deps; use Dpkg::Compression; |