change suffix of keybinding files to ".keys" to avoid conflict with earlier versions.

Move some code around that should never have been inside libs/ardour to begin with.
This commit is contained in:
Paul Davis 2015-10-26 13:35:45 -04:00
parent 9b9a7beb13
commit 589f2a1ab8
11 changed files with 64 additions and 45 deletions

View file

@ -719,10 +719,10 @@ def build(bld):
# 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'] )
for b in [ 'us' ] :
for b in [ 'ardour' ] :
obj = bld(
target = b + '.bindings',
source = b + '.bindings.in',
target = b + '.keys',
source = b + '.keys.in',
rule = a_rule
)
obj.install_path = bld.env['CONFDIR']