From e63b35bbd1b4a3e24a3189aaa262c91b65660f8b Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Tue, 24 Aug 2004 09:20:16 +0000 Subject: [PATCH] fix it properly before removing this Original commit message from CVS: fix it properly before removing this --- docs/gst/Makefile.am | 2 +- docs/libs/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/gst/Makefile.am b/docs/gst/Makefile.am index b1a0f21..c76cc63 100644 --- a/docs/gst/Makefile.am +++ b/docs/gst/Makefile.am @@ -332,7 +332,7 @@ uninstall-local: echo '-- Uninstalling $(DESTDIR)$(TARGET_DIR)/index.sgml' ; \ rm -f $(DESTDIR)$(TARGET_DIR)/index.sgml; \ fi) - if test -d $(DESTDIR)$(TARGET_DIR); then rmdir -p $(DESTDIR)$(TARGET_DIR) 2>/dev/null; fi + if test -d $(DESTDIR)$(TARGET_DIR); then rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(TARGET_DIR) 2>/dev/null; fi # # Require gtk-doc when making dist diff --git a/docs/libs/Makefile.am b/docs/libs/Makefile.am index a4d6ce9..33857f6 100644 --- a/docs/libs/Makefile.am +++ b/docs/libs/Makefile.am @@ -299,7 +299,7 @@ uninstall-local: echo '-- Uninstalling $(DESTDIR)$(TARGET_DIR)/index.sgml' ; \ rm -f $(DESTDIR)$(TARGET_DIR)/index.sgml; \ fi) - if test -d $(DESTDIR)$(TARGET_DIR); then rmdir -p $(DESTDIR)$(TARGET_DIR) 2>/dev/null; fi + if test -d $(DESTDIR)$(TARGET_DIR); then rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(TARGET_DIR) 2>/dev/null; fi # # Require gtk-doc when making dist -- 2.7.4