Browse Source

respect the DOXYGEN environment variable when building docs

tags/v1.9.11-RC1
Karl Lindén 10 years ago
parent
commit
bcc742b6b1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      wscript

+ 1
- 1
wscript View File

@@ -774,7 +774,7 @@ def build(bld):
Logs.pprint('CYAN', "Removing doxygen generated documentation done.")
elif bld.cmd =='build':
if not os.access(html_docs_source_dir, os.R_OK):
os.popen("doxygen").read()
os.popen(bld.env.DOXYGEN).read()
else:
Logs.pprint('CYAN', "doxygen documentation already built.")



Loading…
Cancel
Save