mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
fix waf thinko in backends wscript
This commit is contained in:
parent
0d4460b736
commit
6408d90258
1 changed files with 3 additions and 2 deletions
|
|
@ -48,12 +48,13 @@ def configure(conf):
|
||||||
autowaf.configure(conf)
|
autowaf.configure(conf)
|
||||||
|
|
||||||
backends = backend_list()
|
backends = backend_list()
|
||||||
|
conf.env['BACKENDS'] = backends
|
||||||
|
|
||||||
for i in backends:
|
for i in backends:
|
||||||
sub_config_and_use(conf, i)
|
sub_config_and_use(conf, i)
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
backends = backend_list()
|
backends = bld.env['BACKENDS']
|
||||||
|
|
||||||
for i in backends:
|
for i in backends:
|
||||||
bld.recurse(i)
|
bld.recurse(i)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue