You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by jo...@apache.org on 2011/02/19 20:03:26 UTC

svn commit: r1072416 - /httpd/apreq/trunk/build/update_version.pl

Author: joes
Date: Sat Feb 19 19:03:25 2011
New Revision: 1072416

URL: http://svn.apache.org/viewvc?rev=1072416&view=rev
Log:
allow for APR::Request::Magic

Modified:
    httpd/apreq/trunk/build/update_version.pl

Modified: httpd/apreq/trunk/build/update_version.pl
URL: http://svn.apache.org/viewvc/httpd/apreq/trunk/build/update_version.pl?rev=1072416&r1=1072415&r2=1072416&view=diff
==============================================================================
--- httpd/apreq/trunk/build/update_version.pl (original)
+++ httpd/apreq/trunk/build/update_version.pl Sat Feb 19 19:03:25 2011
@@ -26,7 +26,7 @@ system "perl -i -ple '$substitution' @po
 #  our $VERSION = "[^"]+"
 my @pm;
 find(sub { push @pm, $File::Find::name if /\.pm$/ },
-     qw(glue/perl/lib/Apache2));
+     qw(glue/perl/lib));
 
 my $pattern = '(?<=our \$VERSION = ")([^"]+)(?=")';
 system "perl -i -ple 's/$pattern/$version/' @pm";