diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2015-12-09 01:32:12 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2015-12-09 01:32:12 -0800 |
commit | 537451f0b1ea057e723daa9bb81bc950730583cb (patch) | |
tree | 5d42a86066ea13c973d1ef1295f490d2d0a2422e | |
parent | e009a910ccbd111ae210e0f65aef2db964ed3916 (diff) | |
download | spack-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.
-rw-r--r-- | lib/spack/docs/conf.py | 1 |
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 = '../../..' |