This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix test for perl version number in Makefile.PL
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Thu, 29 Dec 2005 14:32:09 +0000 (14:32 +0000)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Thu, 29 Dec 2005 14:32:09 +0000 (14:32 +0000)
p4raw-id: //depot/perl@26525

ext/Sys/Syslog/Makefile.PL

index 3a25d3f..2fa924c 100644 (file)
@@ -45,7 +45,7 @@ if(eval {require ExtUtils::Constant; 1}) {
     );
 
     ExtUtils::Constant::WriteConstants(
-        ($] > 5.0090002 ? (PROXYSUBS => 1) : ()),
+        ($] > 5.009002 ? (PROXYSUBS => 1) : ()),
         NAME => 'Sys::Syslog',
         NAMES => \@names,
     );