martin      99/04/28 01:40:45

  Modified:    src      CHANGES
               src/helpers TestCompile
  Log:
  Ease configuration debugging by making TestCompile fall back to
  using "make" if the $MAKE variable is unset
  
  Reviewed by: Jim Jagielski,Ralf S. Engelschall,Mitch Wyle <[EMAIL PROTECTED]>
  
  Revision  Changes    Path
  1.1330    +3 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1329
  retrieving revision 1.1330
  diff -u -r1.1329 -r1.1330
  --- CHANGES   1999/04/28 08:31:12     1.1329
  +++ CHANGES   1999/04/28 08:39:45     1.1330
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.7
   
  +  *) Ease configuration debugging by making TestCompile fall back to
  +     using "make" if the $MAKE variable is unset [Martin Kraemer]
  +
     *) Fixed the ServerSignature directive to work as documented.
        [Raymond S Brand <[EMAIL PROTECTED]>] PR#4248
   
  
  
  
  1.27      +1 -1      apache-1.3/src/helpers/TestCompile
  
  Index: TestCompile
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/helpers/TestCompile,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- TestCompile       1999/04/21 14:30:26     1.26
  +++ TestCompile       1999/04/28 08:40:44     1.27
  @@ -145,7 +145,7 @@
   EOF
   
   # Now run that Makefile
  -eval "${MAKE} ${TARGET} >/dev/null $ERRDIR"
  +eval "${MAKE-make} ${TARGET} >/dev/null $ERRDIR"
   
   # And see if dummy exists and is executable, if so, then we
   # assume the condition we are testing for is good
  
  
  

Reply via email to