From: Rafael Garcia-Suarez Date: Thu, 29 Dec 2005 14:32:09 +0000 (+0000) Subject: Fix test for perl version number in Makefile.PL X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=322a00dca208ae733bf03812b33845889461ef0b;p=p5sagit%2Fp5-mst-13.2.git Fix test for perl version number in Makefile.PL p4raw-id: //depot/perl@26525 --- diff --git a/ext/Sys/Syslog/Makefile.PL b/ext/Sys/Syslog/Makefile.PL index 3a25d3f..2fa924c 100644 --- a/ext/Sys/Syslog/Makefile.PL +++ b/ext/Sys/Syslog/Makefile.PL @@ -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, );