From: Jim Meyering Date: Sat, 9 Jan 2010 08:56:20 +0000 (+0100) Subject: avoid another "make distcheck" failure X-Git-Tag: v0.7.6~211 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0418fa2e7265d6cf938f2172a0aeb9f9d7a93022;p=thirdparty%2Flibvirt.git avoid another "make distcheck" failure * docs/Makefile.am (uninstall-local): Separate $$f from preceding dir name with a "/" and use $$(basename $$f) rather than $$f, since some values of $$f are prefixed with devhelp/. --- diff --git a/docs/Makefile.am b/docs/Makefile.am index d53f305bd5..c19e963da3 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -159,4 +159,5 @@ 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 f in $(devhelphtml) $(devhelppng) $(devhelpcss); do \ - rm $(DESTDIR)$(DEVHELP_DIR)$$f ; done + rm $(DESTDIR)$(DEVHELP_DIR)/$$(basename $$f); \ + done