stas 2003/08/12 14:19:26
Modified: lib/Apache Build.pm
Log:
a typo, mea culpa :(
Revision Changes Path
1.136 +4 -4 modperl-2.0/lib/Apache/Build.pm
Index: Build.pm
===================================================================
RCS file: /home/cvs/modperl-2.0/lib/Apache/Build.pm,v
retrieving revision 1.135
retrieving revision 1.136
diff -u -r1.135 -r1.136
--- Build.pm 12 Aug 2003 21:07:49 -0000 1.135
+++ Build.pm 12 Aug 2003 21:19:26 -0000 1.136
@@ -172,7 +172,7 @@
my $config_vars_file = catfile $self->{dir},
"build", "config_vars.mk";
if (open my $fh, $config_vars_file) {
- while ((<$fh>) {
+ while (<$fh>) {
if (/MPM_NAME = (\w+)/) {
$mpm_name = $1;
last;
@@ -749,9 +749,9 @@
map $self->apxs(-q => $_), qw(APR_BINDIR BINDIR);
push @tries, catdir $self->{MP_AP_PREFIX}, "bin"
if exists $self->{MP_AP_PREFIX} and -d $self->{MP_AP_PREFIX};
- # could be the source tree configured interactively
- push @tries, catdir $self->{dir}, "srclib", "apr"
- if exists $self->{dir} and -d $self->{dir};
+# # could be the source tree configured interactively
+# push @tries, catdir $self->{dir}, "srclib", "apr"
+# if exists $self->{dir} and -d $self->{dir};
for (@tries) {
my $try = catfile $_, "apr-config";