Fix doxygen command after update to waf 1.8 in r11458, 126b15bc1efc
authorPeter D. Barnes, Jr. <barnes26@llnl.gov>
Sun, 28 Jun 2015 20:24:41 -0700
changeset 11467 51a6ce206f8b
parent 11466 d2d2cadf7a53
child 11468 53280fca36a5
Fix doxygen command after update to waf 1.8 in r11458, 126b15bc1efc
wscript
--- a/wscript	Fri Jun 26 11:43:48 2015 -0700
+++ b/wscript	Sun Jun 28 20:24:41 2015 -0700
@@ -1120,7 +1120,7 @@
 
     _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)