dougm       01/03/03 15:07:52

  Modified:    lib/Apache Build.pm
  Log:
  make sure dir exists so @INC will be searched otherwise
  
  Revision  Changes    Path
  1.32      +1 -1      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.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- Build.pm  2001/02/22 03:49:22     1.31
  +++ Build.pm  2001/03/03 23:07:52     1.32
  @@ -409,7 +409,7 @@
        }
       }
   
  -    unless ($dir) {
  +    unless ($dir and -d $dir) {
        for (@INC) {
            last if -d ($dir = "$_/auto/Apache/include");
        }
  
  
  

Reply via email to