for unknown reasons sphinx is suddenly having a problem with the
_static directory being moved a directory upwards, so change how
dist-html works to just build normally then move files
Change-Id: I3f1c7260975c91c90a8e1ffb16ecb481aa3a583f
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
dist-html:
- $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) ..
+ $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
+ cp -R $(BUILDDIR)/html/* ../
+ rm -fr $(BUILDDIR)/html
@echo
@echo "Build finished. The HTML pages are in ../."