fix wrapper script major version

This commit is contained in:
Robin Gareus 2015-04-04 19:10:39 +02:00
parent 8d77dc8087
commit 25e2689532
1 changed files with 2 additions and 2 deletions

View File

@ -521,7 +521,7 @@ def build(bld):
obj = bld(features = 'subst')
obj.source = 'ardour.sh.in'
obj.target = 'ardour3'
obj.target = 'ardour' + str (bld.env['MAJOR'])
obj.chmod = Utils.O755
obj.dict = wrapper_subst_dict
obj.install_path = bld.env['BINDIR']
@ -530,7 +530,7 @@ def build(bld):
if bld.is_defined('WINDOWS_VST_SUPPORT'):
obj = bld(features = 'subst')
obj.source = '../vst/ardourvst.in'
obj.target = 'ardourvst3'
obj.target = 'ardourvst' + str (bld.env['MAJOR'])
obj.chmod = Utils.O755
obj.dict = wrapper_subst_dict
obj.install_path = bld.env['BINDIR']