mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
wscript: drop str() on VERSION
It will already have been converted to str in sanitize(), and even python2 is fine without the extra str.
This commit is contained in:
parent
2bb311f99b
commit
0e3e51d958
7 changed files with 13 additions and 13 deletions
|
|
@ -23,7 +23,7 @@ def build(bld):
|
|||
'DATADIR' : os.path.normpath(bld.env['DATADIR']),
|
||||
'CONFDIR' : os.path.normpath(bld.env['CONFDIR']),
|
||||
'LIBS' : 'build/libs',
|
||||
'VERSION' : str (bld.env['VERSION']),
|
||||
'VERSION' : bld.env['VERSION'],
|
||||
'EXECUTABLE' : 'build/tools/bb/bb'
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue