You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by st...@apache.org on 2003/03/23 05:53:37 UTC

cvs commit: modperl-2.0/lib/ModPerl BuildMM.pm

stas        2003/03/22 20:53:37

  Modified:    lib/ModPerl BuildMM.pm
  Log:
  must include the blib in @INC, so Apache::Test* will be found for
  glue_pods rule to work
  
  Revision  Changes    Path
  1.3       +3 -1      modperl-2.0/lib/ModPerl/BuildMM.pm
  
  Index: BuildMM.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/lib/ModPerl/BuildMM.pm,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- BuildMM.pm	22 Mar 2003 07:36:57 -0000	1.2
  +++ BuildMM.pm	23 Mar 2003 04:53:37 -0000	1.3
  @@ -146,6 +146,7 @@
       my $doc_root = File::Spec->catdir($root, "docs", "api");
   
       my $lib_dir = File::Spec->catdir($root, "lib");
  +    my $blib_dir = File::Spec->catdir($root, "blib");
   
       my @targets = ();
       my @target;
  @@ -163,7 +164,8 @@
               next unless -r $podpath;
   
               push @target, 
  -                "\$(FULLPERLRUN) -Mlib=$lib_dir -MModPerl::BuildMM " .
  +                "\$(FULLPERLRUN) -Mblib=$blib_dir -Mlib=$lib_dir " .
  +                "-MModPerl::BuildMM " .
                   "-e ModPerl::BuildMM::glue_pod $pm $podpath $blib";
           }