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:
committed by
Paul Davis
parent
2bb311f99b
commit
0e3e51d958
@@ -32,7 +32,7 @@ def build_ardour_util(bld, util):
|
||||
'libmidipp',
|
||||
]
|
||||
obj.defines = [
|
||||
'VERSIONSTRING="' + str(bld.env['VERSION']) + '"',
|
||||
'VERSIONSTRING="' + bld.env['VERSION'] + '"',
|
||||
'UTILNAME="' + str(pgmprefix + '-' + util) + '"',
|
||||
'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
|
||||
'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
|
||||
|
||||
Reference in New Issue
Block a user