You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by to...@apache.org on 2008/06/30 13:23:39 UTC

svn commit: r672745 - /perl/modperl/branches/threading/Makefile.PL

Author: torsten
Date: Mon Jun 30 04:23:39 2008
New Revision: 672745

URL: http://svn.apache.org/viewvc?rev=672745&view=rev
Log:
remove the "-" from our VERSION_STRING to make it compatible with RPM versions

Modified:
    perl/modperl/branches/threading/Makefile.PL

Modified: perl/modperl/branches/threading/Makefile.PL
URL: http://svn.apache.org/viewvc/perl/modperl/branches/threading/Makefile.PL?rev=672745&r1=672744&r2=672745&view=diff
==============================================================================
--- perl/modperl/branches/threading/Makefile.PL (original)
+++ perl/modperl/branches/threading/Makefile.PL Mon Jun 30 04:23:39 2008
@@ -481,7 +481,7 @@
     open my $fh, 'Changes';
     while (<$fh>) {
         if (/^=item\s+\Q$VERSION\E-(\w+)/) {
-            $VERSION .= "-$1";
+            $VERSION .= "$1";
             last;
         }
         last if /^=item/;