[SCons/Doc] Fix installation of Doxygen docs

Fixes regression introduced in b84d3e3, where the organization of files in the built
documentation changed.

Fixes #553
This commit is contained in:
Ray Speth 2018-08-23 17:24:53 -04:00
parent fefc008ed2
commit 8f2468da52

View file

@ -100,8 +100,8 @@ if localenv['doxygen_docs']:
mglob(env, '#src/cantera/*', 'h', 'cpp'))
env.Alias('doxygen', docs)
install('$inst_docdir/doxygen/html',
mglob(localenv, '#/build/docs/doxygen/html', 'html', 'svg', 'css', 'png'))
install(localenv.RecursiveInstall, '$inst_docdir/doxygen/html',
'#/build/docs/doxygen/html', exclude=['\\.map', '\\.md5'])
if localenv['sphinx_docs']:
localenv['SPHINXBUILD'] = Dir('#build/docs/sphinx')