From: Rafael Garcia-Suarez Date: Fri, 3 Nov 2006 15:04:15 +0000 (+0000) Subject: The assignment to $VERSION must be on its own line, for X-Git-Tag: accepted/trunk/20130322.191538~16692 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e240c90c8379c0167b78b57a96eb176cec0373e0;p=platform%2Fupstream%2Fperl.git The assignment to $VERSION must be on its own line, for ExtUtils::MM_Unix::parse_version to be happy. p4raw-id: //depot/perl@29200 --- diff --git a/ext/DynaLoader/DynaLoader_pm.PL b/ext/DynaLoader/DynaLoader_pm.PL index f4c3c8a..34eaeb3 100644 --- a/ext/DynaLoader/DynaLoader_pm.PL +++ b/ext/DynaLoader/DynaLoader_pm.PL @@ -84,7 +84,9 @@ package DynaLoader; # # Tim.Bunce@ig.co.uk, August 1994 -BEGIN { $VERSION = '1.07'; } +BEGIN { + $VERSION = '1.08'; +} require AutoLoader; *AUTOLOAD = \&AutoLoader::AUTOLOAD;