From 398dd92aecf82719ccebc6821098040499c6ba0b Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Wed, 10 Nov 2021 16:43:40 +0100 Subject: [PATCH] Fix icons install --- data/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/meson.build b/data/meson.build index fb75524..4be6ee7 100644 --- a/data/meson.build +++ b/data/meson.build @@ -1,8 +1,8 @@ pkgdatadir = join_paths(get_option('prefix'), get_option('datadir'), meson.project_name()) -iconsdir = join_paths(get_option('datadir'), 'icons') +iconsdir = join_paths(get_option('datadir'), 'icons', 'hicolor') foreach size: ['scalable', 'symbolic'] - install_subdir('icons/hicolor/' + size, install_dir: iconsdir) + install_subdir('icons/' + size, install_dir: iconsdir) endforeach -- 2.34.4