martin      99/07/21 05:05:13

  Modified:    src/helpers TestCompile
  Log:
  The intention of the $VERBOSE stuff for activating debug output in
  TestCompile was to enable verbosity by passing the environment variable
  VERBOSE=yes (like in: env VERRBOSE=yes ./configure). The recent
  explicit assignment disabled this possibility (again).
  Until we have modified Configure to pass an optional  "-v" to
  each invocation of TestCompile I prefer the old behavior and
  -with this patch- reenable it again.
  
  Revision  Changes    Path
  1.33      +1 -1      apache-1.3/src/helpers/TestCompile
  
  Index: TestCompile
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/helpers/TestCompile,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -r1.32 -r1.33
  --- TestCompile       1999/06/22 21:54:54     1.32
  +++ TestCompile       1999/07/21 12:05:13     1.33
  @@ -51,7 +51,7 @@
   #
   # Handle "verbose", "silent" and "runit" flags
   #
  -VERBOSE=no
  +: ${VERBOSE:=no}
   RUNIT="no"
   case "$1" in
       "-v")
  
  
  

Reply via email to