Author: stas
Date: Tue May 10 21:51:16 2005
New Revision: 169579

URL: http://svn.apache.org/viewcvs?rev=169579&view=rev
Log:
tidy up

Modified:
    perl/modperl/trunk/lib/Apache2/Build.pm

Modified: perl/modperl/trunk/lib/Apache2/Build.pm
URL: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/lib/Apache2/Build.pm?rev=169579&r1=169578&r2=169579&view=diff
==============================================================================
--- perl/modperl/trunk/lib/Apache2/Build.pm (original)
+++ perl/modperl/trunk/lib/Apache2/Build.pm Tue May 10 21:51:16 2005
@@ -1005,14 +1005,14 @@
 # difference between where the apache headers are (to build
 # against) and where they will be installed (to install our
 # own headers alongside)
-# 
+#
 # ap_exp_includedir is where apache is going to install its
 # headers to
 sub ap_exp_includedir {
     my ($self) = @_;
-    
+
     return $self->{ap_exp_includedir} if $self->{ap_exp_includedir};
-    
+
     my $build_vars = File::Spec->catfile($self->{MP_AP_PREFIX}, 
                                          qw(build config_vars.mk));
     open my $vars, "<$build_vars" or die "Couldn't open $build_vars $!";
@@ -1023,7 +1023,7 @@
             last;
         }
     }
-    
+
     $self->{ap_exp_includedir} = $ap_exp_includedir;
 }
 


Reply via email to