summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-03-15 21:24:39 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-03-15 21:25:07 -0400
commit485d7dbc9cb67b6f5115f4e653f43418dd5bf48b (patch)
treec405fa7ed41dcb8a85afd56eec36b079cd780739
parentfed51adfa0c733e6c55bbd1c57f32f2460391999 (diff)
fix wscript to know about key binding dependencies
-rw-r--r--gtk2_ardour/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/wscript b/gtk2_ardour/wscript
index e881f752c5..36223bd2cb 100644
--- a/gtk2_ardour/wscript
+++ b/gtk2_ardour/wscript
@@ -719,11 +719,11 @@ def build(bld):
# NATIVE ARDOUR BINDING FILES
# explicitly state the use of perl here so that it works on windows too
#
- a_rule = 'perl ../tools/fmt-bindings --platform="%s" --winkey="%s" --accelmap ${SRC} >${TGT}' % (sys.platform, bld.env['WINDOWS_KEY'] )
+ a_rule = 'perl ../tools/fmt-bindings --platform="%s" --winkey="%s" --accelmap ${SRC[0].abspath()} >${TGT}' % (sys.platform, bld.env['WINDOWS_KEY'] )
for b in [ 'ardour' ] :
obj = bld(
target = b + '.keys',
- source = b + '.keys.in',
+ source = [ b + '.keys.in', 'mixer.bindings', 'processor_box.bindings', 'step_editing.bindings', 'monitor.bindings' ],
rule = a_rule
)
obj.install_path = bld.env['CONFDIR']