mirror of https://github.com/xemu-project/xemu.git
meson: fix installation of keymaps
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> Message-Id: <20200918130354.1879275-1-anthony.perard@citrix.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
fb4176d0e8
commit
6e01884c36
|
@ -47,6 +47,7 @@ foreach km, args: keymaps
|
||||||
build_by_default: true,
|
build_by_default: true,
|
||||||
output: km,
|
output: km,
|
||||||
command: [native_qemu_keymap, '-f', '@OUTPUT@', args.split()],
|
command: [native_qemu_keymap, '-f', '@OUTPUT@', args.split()],
|
||||||
|
install: true,
|
||||||
install_dir: qemu_datadir / 'keymaps')
|
install_dir: qemu_datadir / 'keymaps')
|
||||||
else
|
else
|
||||||
# copy from source tree
|
# copy from source tree
|
||||||
|
@ -55,6 +56,7 @@ foreach km, args: keymaps
|
||||||
input: km,
|
input: km,
|
||||||
output: km,
|
output: km,
|
||||||
command: ['cp', '@INPUT@', '@OUTPUT@'],
|
command: ['cp', '@INPUT@', '@OUTPUT@'],
|
||||||
|
install: true,
|
||||||
install_dir: qemu_datadir / 'keymaps')
|
install_dir: qemu_datadir / 'keymaps')
|
||||||
endif
|
endif
|
||||||
endforeach
|
endforeach
|
||||||
|
|
Loading…
Reference in New Issue