dougm       01/10/21 21:51:14

  Modified:    .        Makefile.PL
  Log:
  win32 doesnt like documentation
  
  Revision  Changes    Path
  1.49      +8 -1      modperl-2.0/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/Makefile.PL,v
  retrieving revision 1.48
  retrieving revision 1.49
  diff -u -r1.48 -r1.49
  --- Makefile.PL       2001/10/21 23:07:01     1.48
  +++ Makefile.PL       2001/10/22 04:51:14     1.49
  @@ -25,7 +25,14 @@
   my $build = Apache::Build->new(init => 1);
   my $code  = ModPerl::Code->new;
   
  -my @remote_makefile_dirs = qw(docs/src/api/mod_perl-2.0);
  +#XXX: dunno why but win32 fails because of this:
  +#cd docs/src/api/mod_perl-2.0 && nmake all ...
  +#NMAKE : fatal error U1073: don't know how to make 'all'
  +#Stop.
  +#NMAKE : fatal error U1077: 'cd' : return code '0x2'
  +#Stop.
  +my @remote_makefile_dirs = Apache::Build::is_win32() ? () :
  +                           qw(docs/src/api/mod_perl-2.0);
   
   my @scripts = qw(t/TEST);
   configure();
  
  
  


Reply via email to