diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-12-29 14:32:09 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-12-29 14:32:09 +0000 |
commit | 322a00dca208ae733bf03812b33845889461ef0b (patch) | |
tree | 6f7331d7255c973bc486d925ca4db20d8c6cb250 /ext/Sys | |
parent | 38a574c7cd99f8022d4ac40300e9e0841811bd6b (diff) | |
download | perl-322a00dca208ae733bf03812b33845889461ef0b.tar.gz |
Fix test for perl version number in Makefile.PL
p4raw-id: //depot/perl@26525
Diffstat (limited to 'ext/Sys')
-rw-r--r-- | ext/Sys/Syslog/Makefile.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Sys/Syslog/Makefile.PL b/ext/Sys/Syslog/Makefile.PL index 3a25d3fbb5..2fa924cec9 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, ); |