From e1fbb0cf498b8a3e245dda6fd34c986ab03031e1 Mon Sep 17 00:00:00 2001 From: Mihai Fufezan Date: Sat, 18 Dec 2021 19:50:39 +0000 Subject: [PATCH] Use gtk4-update-icon-cache instead of gtk3 one --- build-aux/meson_post_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-aux/meson_post_install.py b/build-aux/meson_post_install.py index e7ab5b1..9a4197a 100644 --- a/build-aux/meson_post_install.py +++ b/build-aux/meson_post_install.py @@ -7,6 +7,6 @@ if not environ.get('DESTDIR', ''): PREFIX = environ.get('MESON_INSTALL_PREFIX', '/usr/local') DATA_DIR = path.join(PREFIX, 'share') print('Updating icon cache...') - call(['gtk-update-icon-cache', '-qtf', path.join(DATA_DIR, 'icons/hicolor')]) + call(['gtk4-update-icon-cache', '-qtf', path.join(DATA_DIR, 'icons/hicolor')]) print("Updating desktop database...") call(["update-desktop-database", path.join(DATA_DIR, 'applications')])