You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-cvs@httpd.apache.org by do...@apache.org on 2002/05/30 07:41:58 UTC

cvs commit: httpd-test/perl-framework/Apache-Test/lib/Apache TestRun.pm

dougm       02/05/29 22:41:58

  Modified:    perl-framework/Apache-Test/lib/Apache TestRun.pm
  Log:
  better adjustment of $^X
  
  Revision  Changes    Path
  1.92      +1 -1      httpd-test/perl-framework/Apache-Test/lib/Apache/TestRun.pm
  
  Index: TestRun.pm
  ===================================================================
  RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestRun.pm,v
  retrieving revision 1.91
  retrieving revision 1.92
  diff -u -r1.91 -r1.92
  --- TestRun.pm	14 May 2002 23:44:22 -0000	1.91
  +++ TestRun.pm	30 May 2002 05:41:58 -0000	1.92
  @@ -61,7 +61,7 @@
       #make sure we use an absolute path to perl
       #else Test::Harness uses the perl in our PATH
       #which might not be the one we want
  -    $^X = $Config{perlpath} if $^X eq 'perl';
  +    $^X = $Config{perlpath} unless -e $^X;
   }
   
   sub new {