From 091f6c91d347d8ce4df5b72e73d025ec9704a6d9 Mon Sep 17 00:00:00 2001 From: CaS Date: Sat, 28 Sep 2002 14:40:25 +0000 Subject: [PATCH] Patch to make uninstall nicer git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@14595 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 2 ++ Source/Makefile.postamble | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7a1f837ad..9347ffaaa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,8 @@ conversion when initialising a date at a daylight savings time boundary, and attempt to improve the code for adding offsets to dates. + * Source/Makefile.postamble: patch to fix some warnings in + uninstall (by David Ayers). 2002-09-27 Richard Frith-Macdonald diff --git a/Source/Makefile.postamble b/Source/Makefile.postamble index 035c8a9f2..cf73d9c2f 100644 --- a/Source/Makefile.postamble +++ b/Source/Makefile.postamble @@ -83,13 +83,13 @@ after-install:: # 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::