From 5f8e652a6fd19c51a09e3ca2550deccad8c116ac Mon Sep 17 00:00:00 2001 From: Ryan Weaver Date: Sun, 31 Jul 2016 09:10:39 -0400 Subject: [PATCH 1/2] Changing platform build directory --- .platform.app.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.platform.app.yaml b/.platform.app.yaml index 946c6f7c152..53c3a99f7b3 100644 --- a/.platform.app.yaml +++ b/.platform.app.yaml @@ -52,4 +52,4 @@ dependencies: hooks: build: | pip install git+https://github.com/fabpot/sphinx-php.git - make html + make -C _build html From 9adc9223f9f5083444888f5e9a79c13f143e4a60 Mon Sep 17 00:00:00 2001 From: Ryan Weaver Date: Sun, 31 Jul 2016 09:31:21 -0400 Subject: [PATCH 2/2] updating Make file to point to directories correctly --- _build/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_build/Makefile b/_build/Makefile index a37807af545..25b660056fe 100644 --- a/_build/Makefile +++ b/_build/Makefile @@ -5,12 +5,12 @@ SPHINXOPTS = SPHINXBUILD = sphinx-build PAPER = -BUILDDIR = _build +BUILDDIR = . # Internal variables. PAPEROPT_a4 = -D latex_paper_size=a4 PAPEROPT_letter = -D latex_paper_size=letter -ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . +ALLSPHINXOPTS = -c $(BUILDDIR) -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) ../ # the i18n builder cannot share the environment and doctrees with the others I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .