summaryrefslogtreecommitdiff
path: root/docs/build/Makefile
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2019-08-26 19:41:58 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2019-08-26 19:41:58 -0400
commitd37c1475619c762183d802f0ce073e48c4e21f7d (patch)
treea38890af4c02c81f0955e55b8c52a269356e206c /docs/build/Makefile
parentd52a785ccc4ec676220a137dfd0dc9cd8a73533a (diff)
downloadalembic-d37c1475619c762183d802f0ce073e48c4e21f7d.tar.gz
change dist-html to use cp
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
Diffstat (limited to 'docs/build/Makefile')
-rw-r--r--docs/build/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/build/Makefile b/docs/build/Makefile
index 313a81e..8762826 100644
--- a/docs/build/Makefile
+++ b/docs/build/Makefile
@@ -37,7 +37,9 @@ html:
@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 ../."