stas        2003/08/12 14:07:49

  Modified:    .        Makefile.PL
               lib/Apache Build.pm
  Log:
  more copy-n-paste cleanups
  
  Revision  Changes    Path
  1.120     +1 -1      modperl-2.0/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/Makefile.PL,v
  retrieving revision 1.119
  retrieving revision 1.120
  diff -u -r1.119 -r1.120
  --- Makefile.PL       12 Aug 2003 21:06:18 -0000      1.119
  +++ Makefile.PL       12 Aug 2003 21:07:48 -0000      1.120
  @@ -312,7 +312,7 @@
   
       open my $fh, 'Changes';
       while (<$fh>) {
  -     if(/^=item.*-dev/) {
  +     if (/^=item.*-dev/) {
            $VERSION .= '-dev';
            last;
        }
  
  
  
  1.135     +1 -2      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.134
  retrieving revision 1.135
  diff -u -r1.134 -r1.135
  --- Build.pm  12 Aug 2003 21:06:18 -0000      1.134
  +++ Build.pm  12 Aug 2003 21:07:49 -0000      1.135
  @@ -173,11 +173,10 @@
               "build", "config_vars.mk";
           if (open my $fh, $config_vars_file) {
               while ((<$fh>) {
  -                if(/MPM_NAME = (\w+)/) {
  +                if (/MPM_NAME = (\w+)/) {
                       $mpm_name = $1;
                       last;
                   }
  -                last if /^=item/;
               }
               close $fh;
           }
  
  
  

Reply via email to