Update of /cvsroot/module-build/Module-Build/lib/Module/Build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24426/lib/Module/Build
Modified Files:
ModuleInfo.pm
Log Message:
Fix detection of $VERSION expressions that are not assignments.
Index: ModuleInfo.pm
===================================================================
RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/ModuleInfo.pm,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- ModuleInfo.pm 3 Feb 2006 04:20:07 -0000 1.17
+++ ModuleInfo.pm 21 Feb 2006 09:06:12 -0000 1.18
@@ -37,7 +37,7 @@
$VARNAME_REGEXP # without parens
)
\s*
- =[^=] # = but not ==
+ =[^=~] # = but not ==, nor =~
/x;
|