diff options
author | Paolo Bonzini | 2020-10-16 09:19:14 +0200 |
---|---|---|
committer | Paolo Bonzini | 2020-10-26 12:08:38 +0100 |
commit | 16bf7a3326d8e8be42b3bf844a6c539d52a997b3 (patch) | |
tree | e2e5d5904c3bd3a8481b3bd87a95bf66962802fd /ui/icons | |
parent | configure: allow configuring localedir (diff) | |
download | qemu-16bf7a3326d8e8be42b3bf844a6c539d52a997b3.tar.gz qemu-16bf7a3326d8e8be42b3bf844a6c539d52a997b3.tar.xz qemu-16bf7a3326d8e8be42b3bf844a6c539d52a997b3.zip |
configure: move directory options from config-host.mak to meson
Since installation is not part of Makefiles anymore, Make need not
know the directories anymore. Meson already knows them through
built-in options, do everything using them instead of the config_host
dictionary.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'ui/icons')
-rw-r--r-- | ui/icons/meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/icons/meson.build b/ui/icons/meson.build index b6e21f6ad7..12c52080eb 100644 --- a/ui/icons/meson.build +++ b/ui/icons/meson.build @@ -2,12 +2,12 @@ foreach s: [16, 24, 32, 48, 64, 128, 256, 512] s = '@0@x@0@'.format(s.to_string()) install_data('qemu_@0@.png'.format(s), rename: 'qemu.png', - install_dir: config_host['qemu_icondir'] / 'hicolor' / s / 'apps') + install_dir: qemu_icondir / 'hicolor' / s / 'apps') endforeach install_data('qemu_32x32.bmp', rename: 'qemu.bmp', - install_dir: config_host['qemu_icondir'] / 'hicolor' / '32x32' / 'apps') + install_dir: qemu_icondir / 'hicolor' / '32x32' / 'apps') install_data('qemu.svg', - install_dir: config_host['qemu_icondir'] / 'hicolor' / 'scalable' / 'apps') + install_dir: qemu_icondir / 'hicolor' / 'scalable' / 'apps') |