summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorKarl Lindén <karl.j.linden@gmail.com>2015-05-02 13:18:35 +0200
committerKarl Lindén <karl.j.linden@gmail.com>2015-05-02 13:18:35 +0200
commitcc6f7c438d4829e816ec8e85e7cd562dd697500f (patch)
tree3b08ecf54e3164f1ef49f27ecc75a564d43d21fc /wscript
parent75c27f65056ea1e5daf0a3a8fd438f03aee5f6ad (diff)
downloadjack2-cc6f7c438d4829e816ec8e85e7cd562dd697500f.tar.gz
update to waf 1.8.9 (it is now stored in source form to ease downstream maintainence)
Diffstat (limited to 'wscript')
-rw-r--r--wscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/wscript b/wscript
index fb6fcb1e..561373df 100644
--- a/wscript
+++ b/wscript
@@ -154,8 +154,8 @@ class AutoOption:
"""
Add a required program that should be checked during configuration. If
var is not given it defaults to PROGRAM (the uppercase of the program
- argument). If the option is enabled the program is saved in
- conf.env.PROGRAM.
+ argument). If the option is enabled the program is saved as a list (?!)
+ in conf.env['PROGRAM'].
"""
if not var:
var = program.upper().replace('-', '_')
@@ -749,7 +749,7 @@ def build(bld):
def doxygen(task):
doxyfile = task.inputs[0].abspath()
logfile = task.outputs[0].abspath()
- cmd = '%s %s &> %s' % (task.env.DOXYGEN, doxyfile, logfile)
+ cmd = '%s %s &> %s' % (task.env['DOXYGEN'][0], doxyfile, logfile)
return task.exec_command(cmd)
bld(