wscript: drop unused local VERSION variables
pyflakes correctly points out problems like: gtk2_ardour/wscript:537:5 local variable 'VERSION' is assigned to but never used
This commit is contained in:
committed by
Paul Davis
parent
2e367de4f0
commit
aa3f6e3a5c
@@ -21,8 +21,6 @@ def configure(conf):
|
||||
conf.check(compiler='cxx', lib='gdi32', mandatory=True, uselib_store='GDI32')
|
||||
|
||||
def build(bld):
|
||||
VERSION = "%s.%s" % (bld.env['MAJOR'], bld.env['MINOR'])
|
||||
|
||||
if bld.is_defined('VST3_SUPPORT'):
|
||||
obj = bld (features = 'cxx c cxxprogram')
|
||||
obj.source = 'vst3-scanner.cc'
|
||||
|
||||
Reference in New Issue
Block a user