lars        99/03/15 14:47:37

  Modified:    src/support apxs.pl
  Log:
  fix double quote bug.
  
  PR: 4058
  Submitted by: James Cloos <[EMAIL PROTECTED]>
  Reviewed by: Ralf, Lars
  
  Revision  Changes    Path
  1.20      +1 -1      apache-1.3/src/support/apxs.pl
  
  Index: apxs.pl
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/support/apxs.pl,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- apxs.pl   1999/03/14 03:53:03     1.19
  +++ apxs.pl   1999/03/15 22:47:36     1.20
  @@ -91,7 +91,7 @@
   ##
   ##  Initial shared object support check
   ##
  -if (not -x `$CFG_SBINDIR/$CFG_TARGET`) {
  +if (not -x "$CFG_SBINDIR/$CFG_TARGET") {
        print STDERR "apxs:Error: $CFG_SBINDIR/$CFG_TARGET not found or not 
executable\n";
        exit(1);
   }
  
  
  

Reply via email to