pcs         98/02/28 03:50:53

  Modified:    src      Configure
  Log:
  Module Makefiles generated by Configure do not remove shared
  library files (.so). Also they remove "*.o" which could delete
  object files not part of Apache. Ensure that make clean in module
  directories only removes Apache-built object and shared-libraries.
  
  Revision  Changes    Path
  1.190     +1 -1      apache-1.3/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.189
  retrieving revision 1.190
  diff -u -r1.189 -r1.190
  --- Configure 1998/02/27 14:45:00     1.189
  +++ Configure 1998/02/28 11:50:53     1.190
  @@ -1170,7 +1170,7 @@
        $(CC) -c $(INCLUDES) $(CFLAGS) $(SPACER) $<
   
   clean:
  -     rm -f *.o $(LIB) $(SHLIB)
  +     rm -f $(OBJS) $(SHLIBS) $(SHLIBS_OBJ) $(LIB) $(SHLIB)
   
   $(OBJS) $(SHLIBS) $(SHLIBS_OBJ): Makefile
   EOF
  
  
  

Reply via email to