summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <nedbat@gmail.com>2016-12-13 21:23:05 -0500
committerNed Batchelder <nedbat@gmail.com>2016-12-13 21:23:05 -0500
commit6c83d1c10ac8e6469a89bcda5b0a38bbf5242be1 (patch)
treec49a7d74f89593ef5ff41e0b334c616deee589f5
parentadf64ff439f0ca95d8ba43dc614acf72b6b3219d (diff)
parent715c1bfa2139146eb848bb69f5455f3c33b7edcb (diff)
downloadpython-coveragepy-git-6c83d1c10ac8e6469a89bcda5b0a38bbf5242be1.tar.gz
Merged in dachary/coverage.py/issue-523 (pull request #99)
add PYTHONPATH to dochtml target #523
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e2f228ba..eb2434c4 100644
--- a/Makefile
+++ b/Makefile
@@ -98,7 +98,7 @@ docreqs:
pip install -r doc/requirements.pip
dochtml:
- $(SPHINXBUILD) -b html $(SPHINXOPTS) doc/_build/html
+ PYTHONPATH=$(CURDIR) $(SPHINXBUILD) -b html $(SPHINXOPTS) doc/_build/html
@echo
@echo "Build finished. The HTML pages are in doc/_build/html."