From 624fa59be3c40b5732170fc231b0b331ab1b523f Mon Sep 17 00:00:00 2001 From: Michael Webster Date: Sun, 2 Sep 2018 09:48:37 -0400 Subject: [PATCH] meson_update_icon_cache.py: Print the icon cache folder when running. --- install-scripts/meson_update_icon_cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-scripts/meson_update_icon_cache.py b/install-scripts/meson_update_icon_cache.py index 76eb67ae8..d618191ab 100644 --- a/install-scripts/meson_update_icon_cache.py +++ b/install-scripts/meson_update_icon_cache.py @@ -6,5 +6,5 @@ themedir = os.path.join(os.environ['MESON_INSTALL_PREFIX'], 'share', 'icons', 'hicolor') if not os.environ.get('DESTDIR'): - print('Updating gtk icon cache...') + print('Updating gtk icon cache... %s' % themedir) subprocess.call(['gtk-update-icon-cache', '-f', '-t', themedir])