]> xenbits.xensource.com Git - libvirt.git/commitdiff
docs: Try harder to uninstall
authorMichal Privoznik <mprivozn@redhat.com>
Sat, 13 Feb 2016 10:19:44 +0000 (11:19 +0100)
committerMichal Privoznik <mprivozn@redhat.com>
Tue, 23 Feb 2016 11:05:01 +0000 (12:05 +0100)
Imagine you have partially installed libvirt, or maybe you're
just running 'make uninstall' from a different version than 'make
install' has been ran. One way or another, we are doing plain
'rm' instead of 'rm -f' and thus not trying hard enough when
uninstalling. In the rest of our code we stick with -f switch. Do
that for docs too.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
docs/Makefile.am

index 02eca6479ad0fad2d6e889135226fb1fd4b90cfa..1b4353b2629d45ea7be8a68338aba3f40f217327 100644 (file)
@@ -366,8 +366,8 @@ install-data-local:
        $(INSTALL_DATA) $(srcdir)/libvirtLogo.png $(DESTDIR)$(pkgdatadir)
 
 uninstall-local:
-       for h in $(apihtml); do rm $(DESTDIR)$(HTML_DIR)/$$h; done
-       for p in $(apipng); do rm $(DESTDIR)$(HTML_DIR)/$$p; done
+       for h in $(apihtml); do rm -f $(DESTDIR)$(HTML_DIR)/$$h; done
+       for p in $(apipng); do rm -f $(DESTDIR)$(HTML_DIR)/$$p; done
        for f in $(devhelphtml) $(devhelppng) $(devhelpcss); do \
-         rm $(DESTDIR)$(DEVHELP_DIR)/$$(basename $$f); \
+         rm -f $(DESTDIR)$(DEVHELP_DIR)/$$(basename $$f); \
        done