dgaudet     97/07/20 17:16:20

  Modified:    src/helpers  TestLib
  Log:
  I get nervous about 'rm -r' where it's not strictly needed.
  
  Revision  Changes    Path
  1.5       +2 -2      apache/src/helpers/TestLib
  
  Index: TestLib
  ===================================================================
  RCS file: /export/home/cvs/apache/src/helpers/TestLib,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -C3 -r1.4 -r1.5
  *** TestLib   1997/07/17 17:12:42     1.4
  --- TestLib   1997/07/21 00:16:19     1.5
  ***************
  *** 1,5 ****
    #!/bin/sh
  ! trap 'rm -rf Makefile dummy; exit' 0 1 2 3 15
    #
    # Yet another Apache Configure helper script.
    # This one exists simply to test for the existance of
  --- 1,5 ----
    #!/bin/sh
  ! trap 'rm -f Makefile dummy; exit' 0 1 2 3 15
    #
    # Yet another Apache Configure helper script.
    # This one exists simply to test for the existance of
  ***************
  *** 27,33 ****
    # Get makefile settings and build a basic Makefile
    #
    cd ./helpers
  ! rm -rf dummy
    cat ../Makefile.config > Makefile
    cat <<EOF >> Makefile
    CFLAGS=$(OPTIM) $(CFLAGS1) $(EXTRA_CFLAGS)
  --- 27,33 ----
    # Get makefile settings and build a basic Makefile
    #
    cd ./helpers
  ! rm -f dummy
    cat ../Makefile.config > Makefile
    cat <<EOF >> Makefile
    CFLAGS=$(OPTIM) $(CFLAGS1) $(EXTRA_CFLAGS)
  
  
  

Reply via email to