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/.
This commit is contained in:
Jim Meyering 2010-01-09 09:56:20 +01:00
parent a4e9edbd77
commit 0418fa2e72

View File

@ -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