mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Patch to make uninstall nicer
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@14595 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e0fc54a081
commit
e7fff3288b
2 changed files with 6 additions and 4 deletions
|
@ -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 <rfm@gnu.org>
|
||||
|
||||
|
|
|
@ -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::
|
||||
|
|
Loading…
Reference in a new issue