Hi Richard,
here's a small patch for the core/base/Source/Makefile.postamble for a
cleaner uninstall.
Cheers,
Dave
Index: Source/Makefile.postamble
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/base/Source/Makefile.postamble,v
retrieving revision 1.75
diff -u -r1.75 Makefile.postamble
--- Source/Makefile.postamble 30 Jun 2002 09:43:21 -0000 1.75
+++ Source/Makefile.postamble 27 Sep 2002 18:25:55 -0000
@@ -83,13 +83,13 @@
# Things to do after uninstalling
after-uninstall::
for file in $(GNU_HEADERS); do \
- rm $(GNUSTEP_HEADERS)/gnustep/base/$$file ; \
+ rm -f $(GNUSTEP_HEADERS)/gnustep/base/$$file ; \
done
for file in $(UNICODE_HEADERS); do \
- rm $(GNUSTEP_HEADERS)/gnustep/$$file ; \
+ rm -f $(GNUSTEP_HEADERS)/gnustep/$$file ; \
done
- rm $(GNUSTEP_HEADERS)/$(GNUSTEP_TARGET_DIR)/GSConfig.h
- rm $(GNUSTEP_HEADERS)/$(GNUSTEP_TARGET_DIR)/mframe.h
+ rm -f $(GNUSTEP_HEADERS)/$(GNUSTEP_TARGET_DIR)/GSConfig.h
+ rm -f $(GNUSTEP_HEADERS)/$(GNUSTEP_TARGET_DIR)/mframe.h
# Things to do before cleaning
# before-clean::