From 5825f5b2be03542e91c69b2b778e263dc3e6924b Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 3 Sep 2014 20:40:52 -0400 Subject: [PATCH] fix EXECUTABLE for ardev and friends to correctly name executable in build tree --- gtk2_ardour/wscript | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/wscript b/gtk2_ardour/wscript index 0041d7bf66..d46292f30b 100644 --- a/gtk2_ardour/wscript +++ b/gtk2_ardour/wscript @@ -516,8 +516,9 @@ def build(bld): 'CONFDIR' : os.path.normpath(bld.env['CONFDIR']), 'LIBS' : 'build/libs', 'VERSION' : bld.env['VERSION'], - # this is for ardev and friends - 'EXECUTABLE' : 'build/gtk2_ardour/' + bld.env['EXECUTABLE_NAME'], + # this is for ardev and friends and refers to the executable + # that can be found in the build tree. + 'EXECUTABLE' : 'build/gtk2_ardour/' + bld.env['EXECUTABLE_NAME'] + '-' + str (bld.env['VERSION']), # this is for the script installed by ./waf install 'EXECUTABLE_NAME' : bld.env['EXECUTABLE_NAME'], }