Fix doxygen command after update to waf 1.8 in r11458, 126b15bc1efc

This commit is contained in:
Peter D. Barnes, Jr.
2015-06-28 20:24:41 -07:00
parent dfd965e6f8
commit 30c95658e9

View File

@@ -1120,7 +1120,7 @@ def _doxygen(bld):
_getVersion()
doxygen_config = os.path.join('doc', 'doxygen.conf')
if subprocess.Popen([env['DOXYGEN'], doxygen_config]).wait():
if subprocess.Popen(env['DOXYGEN'] + [doxygen_config]).wait():
Logs.error("Doxygen build returned an error.")
raise SystemExit(1)