mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Towards waf python 2+3 support
This commit is contained in:
parent
dfe712c564
commit
2e9ac80e99
22 changed files with 517 additions and 94 deletions
|
|
@ -86,7 +86,7 @@ def build(bld):
|
|||
utils = bld.path.ant_glob('*.cc', excl=['example.cc', 'common.cc'])
|
||||
|
||||
for util in utils:
|
||||
fn = str(util)[:-3]
|
||||
fn = os.path.splitext(os.path.basename(str(util)))[0]
|
||||
build_ardour_util(bld, fn)
|
||||
if bld.env['build_target'] != 'mingw':
|
||||
bld.symlink_as(bld.env['BINDIR'] + '/' + pgmprefix + "-" + fn, bld.env['LIBDIR'] + '/utils/ardour-util.sh')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue