diff options
author | Daniel Veillard <veillard@redhat.com> | 2009-08-24 14:23:32 +0200 |
---|---|---|
committer | Daniel Veillard <veillard@redhat.com> | 2009-08-24 14:23:32 +0200 |
commit | 2173b5cb30b5a0067790f11732f03189e3291b2a (patch) | |
tree | d2c739cf931074fc2c0b36dc5e7bdf8c00d2123d /Makefile.am | |
parent | 147687f1086cb5c046bd916a27c15ef6d449f293 (diff) | |
download | libxml2-2173b5cb30b5a0067790f11732f03189e3291b2a.tar.gz |
555833 always use rm -f in uninstall-local
* Makefile.am: so that make clean doesn't fail in some circumstances
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am index 0955a309..ebaae313 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1220,12 +1220,12 @@ install-data-local: -@INSTALL@ -m 0644 $(srcdir)/testXPath.c $(DESTDIR)$(EXAMPLES_DIR) uninstall-local: - rm $(DESTDIR)$(EXAMPLES_DIR)/testXPath.c - rm $(DESTDIR)$(EXAMPLES_DIR)/testHTML.c - rm $(DESTDIR)$(EXAMPLES_DIR)/testSAX.c - rm $(DESTDIR)$(EXAMPLES_DIR)/xmllint.c + rm -f $(DESTDIR)$(EXAMPLES_DIR)/testXPath.c + rm -f $(DESTDIR)$(EXAMPLES_DIR)/testHTML.c + rm -f $(DESTDIR)$(EXAMPLES_DIR)/testSAX.c + rm -f $(DESTDIR)$(EXAMPLES_DIR)/xmllint.c rm -rf $(DESTDIR)$(EXAMPLES_DIR) - rm $(DESTDIR)$(BASE_DIR)/$(DOC_MODULE)/Copyright + rm -f $(DESTDIR)$(BASE_DIR)/$(DOC_MODULE)/Copyright rm -rf $(DESTDIR)$(BASE_DIR)/$(DOC_MODULE) tst: tst.c |