summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOndrej Holy <oholy@redhat.com>2018-06-14 14:48:45 +0200
committerOndrej Holy <oholy@redhat.com>2018-06-14 16:04:18 +0200
commit5848e8d544dd975454d4ef671c5b8b7ef91ccc83 (patch)
tree061f7b680fa847b99d4c6d9a70c5f8e281333c0a
parent8ccae20258a4f5fa17da6641581b686adbb69179 (diff)
downloadbaobab-5848e8d544dd975454d4ef671c5b8b7ef91ccc83.tar.gz
build: Install also 24x24 icons
After the meson port, 24x24 icons are not installed. Let's add missing 24x24 icon size in meson.build to install them.
-rw-r--r--data/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/meson.build b/data/meson.build
index a2d22ed..5b1ef00 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -1,5 +1,5 @@
icondir = join_paths(get_option('datadir'), 'icons/hicolor')
-foreach size: ['16x16', '22x22', '32x32', '48x48', '256x256', 'symbolic']
+foreach size: ['16x16', '22x22', '24x24', '32x32', '48x48', '256x256', 'symbolic']
install_subdir('icons/hicolor/' + size, install_dir: icondir)
endforeach