mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-10 15:36:24 +01:00
fix waf thinko in backends wscript
Conflicts: libs/backends/wscript
This commit is contained in:
parent
250fe06ec7
commit
c430449781
1 changed files with 4 additions and 1 deletions
|
|
@ -45,10 +45,13 @@ def configure(conf):
|
|||
autowaf.configure(conf)
|
||||
|
||||
backends = backend_list()
|
||||
conf.env['BACKENDS'] = backends
|
||||
|
||||
for i in backends:
|
||||
sub_config_and_use(conf, i)
|
||||
|
||||
def build(bld):
|
||||
backends = backend_list()
|
||||
backends = bld.env['BACKENDS']
|
||||
|
||||
for i in backends:
|
||||
bld.recurse(i)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue