summaryrefslogtreecommitdiff
path: root/lib/Automake
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2012-03-07 23:26:24 +0100
committerStefano Lattarini <stefano.lattarini@gmail.com>2012-03-07 23:26:24 +0100
commitddac05053058efd64d67609d30bae20445ae584b (patch)
treefe83196310567e5049e294e49156bbee314889f7 /lib/Automake
parent27f3c56209a91724b0d83d0dd655f0eae0a698a9 (diff)
downloadautomake-ddac05053058efd64d67609d30bae20445ae584b.tar.gz
getopt: relax version requirement for perl
* lib/Automake/Getopt.pm: Require perl 5.6.0, not 5.6.2: the former is enough. See also commit 'v1.11-2054-g7df05a0' on master (dated 04-03-2012).
Diffstat (limited to 'lib/Automake')
-rw-r--r--lib/Automake/Getopt.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Automake/Getopt.pm b/lib/Automake/Getopt.pm
index 84cee5e4a..e1a39681e 100644
--- a/lib/Automake/Getopt.pm
+++ b/lib/Automake/Getopt.pm
@@ -30,7 +30,7 @@ line options in conformance to the GNU Coding standards.
=cut
-use 5.006_002;
+use 5.006;
use strict;
use warnings FATAL => 'all';
use Exporter ();