diff options
author | Sam James <sam@gentoo.org> | 2023-05-31 01:35:14 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-05-31 01:35:14 +0100 |
commit | 1fc5ab0a22228d2b385c4e1c80e7d78b60a7104a (patch) | |
tree | 3fa5869209340722f9d38d885bea009678f09716 /app-emulation/qemu/files/qemu-5.2.0-disable-keymap.patch | |
parent | net-fs/samba: treeclean (diff) | |
download | musl-1fc5ab0a22228d2b385c4e1c80e7d78b60a7104a.tar.gz musl-1fc5ab0a22228d2b385c4e1c80e7d78b60a7104a.tar.bz2 musl-1fc5ab0a22228d2b385c4e1c80e7d78b60a7104a.zip |
app-emulation/qemu: treeclean
::gentoo works AFAIK.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-emulation/qemu/files/qemu-5.2.0-disable-keymap.patch')
-rw-r--r-- | app-emulation/qemu/files/qemu-5.2.0-disable-keymap.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/app-emulation/qemu/files/qemu-5.2.0-disable-keymap.patch b/app-emulation/qemu/files/qemu-5.2.0-disable-keymap.patch deleted file mode 100644 index 4b5676be..00000000 --- a/app-emulation/qemu/files/qemu-5.2.0-disable-keymap.patch +++ /dev/null @@ -1,25 +0,0 @@ -Do not use system's 'qemu-keymap' in native case. ---- a/meson.build -+++ b/meson.build -@@ -337,6 +337,8 @@ if 'CONFIG_LIBCAP_NG' in config_host - endif - if get_option('xkbcommon').auto() and not have_system and not have_tools - xkbcommon = not_found -+elif get_option('xkbcommon').disabled() -+ xkbcommon = not_found - else - xkbcommon = dependency('xkbcommon', required: get_option('xkbcommon'), - method: 'pkg-config', static: enable_static) ---- a/pc-bios/keymaps/meson.build -+++ b/pc-bios/keymaps/meson.build -@@ -33,7 +33,9 @@ keymaps = { - 'tr': '-l tr', - } - --if meson.is_cross_build() or 'CONFIG_XKBCOMMON' not in config_host -+if meson.is_cross_build() - native_qemu_keymap = find_program('qemu-keymap', required: false, disabler: true) -+elif get_option('xkbcommon').disabled() -+ native_qemu_keymap = not_found - else - native_qemu_keymap = qemu_keymap |