summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-08-01 22:39:53 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-02-22 15:31:23 -0500
commite01d36a5219433286c9117122bc9b6670373ee2c (patch)
treea75677d42be9f6faf397cad4f3dd9cb8fa29e991
parent0f17508e6caf640254d9b69f2d816e855e386cf6 (diff)
fix command used to build keyboard bindings
-rw-r--r--gtk2_ardour/wscript9
1 files changed, 5 insertions, 4 deletions
diff --git a/gtk2_ardour/wscript b/gtk2_ardour/wscript
index 9b864be6b4..251c7c06c4 100644
--- a/gtk2_ardour/wscript
+++ b/gtk2_ardour/wscript
@@ -718,10 +718,11 @@ def build(bld):
# 'SAE-de-keypad', 'SAE-de-nokeypad', 'SAE-us-keypad',
# 'SAE-us-nokeypad', 'ergonomic-us'
- #
+ # 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} >${TGT}' % (sys.platform, bld.env['WINDOWS_KEY'] )
+
for b in [ 'mnemonic-us' ] :
obj = bld(
target = b + '.bindings',
@@ -729,7 +730,7 @@ def build(bld):
rule = a_rule
)
obj.install_path = bld.env['CONFDIR']
-
+
# not modified at present
bld.install_files(bld.env['CONFDIR'], 'dark.colors')
bld.install_files(bld.env['CONFDIR'], 'step_editing.bindings')