summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2015-12-09 01:32:12 -0800
committerTodd Gamblin <tgamblin@llnl.gov>2015-12-09 01:32:12 -0800
commit537451f0b1ea057e723daa9bb81bc950730583cb (patch)
tree5d42a86066ea13c973d1ef1295f490d2d0a2422e /lib
parente009a910ccbd111ae210e0f65aef2db964ed3916 (diff)
downloadspack-537451f0b1ea057e723daa9bb81bc950730583cb.tar.gz
spack-537451f0b1ea057e723daa9bb81bc950730583cb.tar.bz2
spack-537451f0b1ea057e723daa9bb81bc950730583cb.tar.xz
spack-537451f0b1ea057e723daa9bb81bc950730583cb.zip
bugfix: doc build needed additional sys.path due to externals change.
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/docs/conf.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/spack/docs/conf.py b/lib/spack/docs/conf.py
index e8e170d0a6..3d2a8251aa 100644
--- a/lib/spack/docs/conf.py
+++ b/lib/spack/docs/conf.py
@@ -43,6 +43,7 @@ import subprocess
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.insert(0, os.path.abspath('exts'))
+sys.path.insert(0, os.path.abspath('../external'))
# Add the Spack bin directory to the path so that we can use its output in docs.
spack_root = '../../..'