rse 98/07/25 04:30:19
Modified: src CHANGES Makefile.tmpl
Log:
Fix `distclean' and `clean' targets in src/Makefile.tmpl to have same
behavior and to cleanup correctly even under enabled SHARED_CORE rule.
Revision Changes Path
1.984 +4 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.983
retrieving revision 1.984
diff -u -r1.983 -r1.984
--- CHANGES 1998/07/25 11:25:02 1.983
+++ CHANGES 1998/07/25 11:30:17 1.984
@@ -1,4 +1,8 @@
Changes with Apache 1.3.2
+
+ *) Fix `distclean' and `clean' targets in src/Makefile.tmpl to have same
+ behavior and to cleanup correctly even under enabled SHARED_CORE rule.
+ [Ralf S. Engelschall]
*) Use a more straight forward and thus less problematic Sed command in
src/helper/mkdir.sh script. [Ralf S. Engelschall]
1.103 +2 -2 apache-1.3/src/Makefile.tmpl
Index: Makefile.tmpl
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/Makefile.tmpl,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- Makefile.tmpl 1998/07/20 16:27:58 1.102
+++ Makefile.tmpl 1998/07/25 11:30:18 1.103
@@ -66,7 +66,7 @@
echo "<=== $(SDP)support"
clean:
- rm -f $(TARGET) libhttpd.* *.o
+ -rm -f $(TARGET) libhttpd.* *.o
@for i in $(SUBDIRS); do \
echo "===> $(SDP)$$i"; \
( cd $$i && $(MAKE) $(MFLAGS_STATIC) SDP='$(SDP)' $@ ) || exit
1; \
@@ -74,7 +74,7 @@
done
distclean:
- -rm -f $(TARGET) *.o
+ -rm -f $(TARGET) libhttpd.* *.o
@for i in $(SUBDIRS); do \
echo "===> $(SDP)$$i"; \
( cd $$i && $(MAKE) $(MFLAGS_STATIC) SDP='$(SDP)' $@ ) || exit
1; \