
torsten at apache
Jun 30, 2008, 4:23 AM
Post #1 of 1
(1340 views)
Permalink
|
|
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/;
|