Author: torsten Date: Mon Jun 30 03:34:11 2008 New Revision: 672738 URL: http://svn.apache.org/viewvc?rev=672738&view=rev Log: allow for other suffixes than "-dev" or "-rc\d+" in our VERSION_STRING
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=672738&r1=672737&r2=672738&view=diff ============================================================================== --- perl/modperl/branches/threading/Makefile.PL (original) +++ perl/modperl/branches/threading/Makefile.PL Mon Jun 30 03:34:11 2008 @@ -480,7 +480,7 @@ open my $fh, 'Changes'; while (<$fh>) { - if (/^=item.*-(dev|rc\d+)/) { + if (/^=item\s+\Q$VERSION\E-(\w+)/) { $VERSION .= "-$1"; last; }