Minor fixes to documentation build scripts

This commit is contained in:
Victor Zverovich
2016-06-02 06:52:07 -07:00
parent 9492b9ff03
commit 06045cb4a5
3 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -94,7 +94,7 @@ def build_docs(version='dev', **kwargs):
html_dir = os.path.join(work_dir, 'html')
versions = [v for v in ['3.0.0', '2.0.0', '1.1.0'] if v != version]
check_call(['sphinx-build',
'-Dbreathe_projects.format=' + doxyxml_dir,
'-Dbreathe_projects.format=' + os.path.abspath(doxyxml_dir),
'-Dversion=' + version, '-Drelease=' + version,
'-Aversion=' + version, '-Aversions=' + ','.join(versions),
'-b', 'html', doc_dir, html_dir])