stas        2002/12/15 00:49:24

  Modified:    xs/APR/APR Makefile.PL
  Log:
  s/qx/qq/; need to build the string not to run it
  
  Revision  Changes    Path
  1.7       +2 -1      modperl-2.0/xs/APR/APR/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/xs/APR/APR/Makefile.PL,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- Makefile.PL       28 Nov 2002 08:43:33 -0000      1.6
  +++ Makefile.PL       15 Dec 2002 08:49:24 -0000      1.7
  @@ -6,8 +6,9 @@
   
   # XXX: this works only with libapr 0.9.2+ (not on win32)
   my @libs = grep $_, map { -x $_ && qx{$_ --link-ld} }
  -    map { qx{$prefix/bin/$_-config} } qw(apr apu);
  +    map { qq{$prefix/bin/$_-config} } qw(apr apu);
   chomp @libs;
  +
   my $define = @libs ? '-DMP_HAVE_APR_LIBS' : '';
   
   ModPerl::MM::WriteMakefile(
  
  
  


Reply via email to