Browse Source

Dpkg::Util: Update comment to mention new implementations from List::Util

Guillem Jover 11 years ago
parent
commit
f25418fe3a
1 changed files with 3 additions and 0 deletions
  1. 3 0
      scripts/Dpkg/Util.pm

+ 3 - 0
scripts/Dpkg/Util.pm

@@ -27,6 +27,9 @@ our %EXPORT_TAGS = (list => [ qw(any none) ]);
 # XXX: Ideally we would use List::MoreUtils, but that's not a core module,
 # so to avoid the additional dependency we'll make do with the following
 # trivial reimplementations.
+#
+# These got added to List::Util 1.33, which got merged into perl 5.20.0,
+# once that is in Debian oldstable we can switch to that core module.
 
 sub any(&@) {
     my $code = shift;