summaryrefslogtreecommitdiff
path: root/cpan
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2015-02-21 13:08:08 +0000
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2015-02-21 13:08:08 +0000
commitd8b081e2a621ed5fbeafc993071fad7a6cb69e88 (patch)
treeceff56b59980bd6b60216ec4c7a7100f8cc6f7e2 /cpan
parentadc55e020e9dd90e3092c97ee7db0912097c4a7e (diff)
downloadperl-d8b081e2a621ed5fbeafc993071fad7a6cb69e88.tar.gz
Update Getopt-Long to CPAN version 2.44
[DELTA] Changes in version 2.44 ----------------------- * Be gentle to the user community and turn fix 92462 into a warning. This may be changed back to error in some future release.
Diffstat (limited to 'cpan')
-rw-r--r--cpan/Getopt-Long/lib/Getopt/Long.pm12
1 files changed, 7 insertions, 5 deletions
diff --git a/cpan/Getopt-Long/lib/Getopt/Long.pm b/cpan/Getopt-Long/lib/Getopt/Long.pm
index 0be46fee97..8a99db9288 100644
--- a/cpan/Getopt-Long/lib/Getopt/Long.pm
+++ b/cpan/Getopt-Long/lib/Getopt/Long.pm
@@ -4,8 +4,8 @@
# Author : Johan Vromans
# Created On : Tue Sep 11 15:00:12 1990
# Last Modified By: Johan Vromans
-# Last Modified On: Wed Jan 14 15:03:41 2015
-# Update Count : 1680
+# Last Modified On: Thu Feb 19 09:15:53 2015
+# Update Count : 1682
# Status : Released
################ Module Preamble ################
@@ -17,10 +17,10 @@ use 5.004;
use strict;
use vars qw($VERSION);
-$VERSION = 2.43;
+$VERSION = 2.44;
# For testing versions only.
use vars qw($VERSION_STRING);
-$VERSION_STRING = "2.43";
+$VERSION_STRING = "2.44";
use Exporter;
use vars qw(@ISA @EXPORT @EXPORT_OK);
@@ -374,7 +374,9 @@ sub GetOptionsFromArray(@) {
}
$linkage{'<>'} = shift (@optionlist);
if ( $passthrough ) {
- $error .= "Option spec <> cannot be used with pass_through\n";
+ # Too harsh... for now.
+ # $error .= "Option spec <> cannot be used with pass_through\n";
+ warn("Option spec <> cannot be used with pass_through. FIX IT!\n");
}
next;
}