Tiny Getopt::Long patch from Johan Vromans.
Jarkko Hietaniemi [Fri, 18 Aug 2000 13:35:57 +0000 (13:35 +0000)]
p4raw-id: //depot/perl@6697

lib/Getopt/Long.pm
t/lib/gol-basic.t
t/lib/gol-oo.t

index 7c64c88..b3d4622 100644 (file)
@@ -36,7 +36,7 @@ BEGIN {
     require 5.004;
     use Exporter ();
     use vars     qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
-    $VERSION     = "2.23_05";
+    $VERSION     = 2.23_05;
 
     @ISA         = qw(Exporter);
     @EXPORT      = qw(&GetOptions $REQUIRE_ORDER $PERMUTE $RETURN_IN_ORDER);
index 6707ef1..0443816 100755 (executable)
@@ -8,7 +8,7 @@ BEGIN {
 use Getopt::Long qw(:config no_ignore_case);
 die("Getopt::Long version 2.23_03 required--this is only version ".
     $Getopt::Long::VERSION)
-  unless $Getopt::Long::VERSION ge "2.23_03";
+  unless $Getopt::Long::VERSION >= 2.23_03;
 
 print "1..9\n";
 
index 106d54f..b344e4c 100644 (file)
@@ -8,7 +8,7 @@ BEGIN {
 use Getopt::Long;
 die("Getopt::Long version 2.23_03 required--this is only version ".
     $Getopt::Long::VERSION)
-  unless $Getopt::Long::VERSION ge "2.23_03";
+  unless $Getopt::Long::VERSION >= 2.23_03;
 print "1..9\n";
 
 @ARGV = qw(-Foo -baR --foo bar);