We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7754376 + 5336d4c commit 7253d96Copy full SHA for 7253d96
1 file changed
meson/post_install.py
100644
100755
@@ -4,7 +4,11 @@
4
import subprocess
5
6
schemadir = os.path.join(os.environ['MESON_INSTALL_PREFIX'], 'share', 'glib-2.0', 'schemas')
7
+iconcachedir = os.path.join(os.environ['MESON_INSTALL_PREFIX'], 'share', 'icons', 'hicolor')
8
9
if not os.environ.get('DESTDIR'):
- print('Compiling gsettings schemas...')
10
+ print('Compiling gsettings schemas…')
11
subprocess.call(['glib-compile-schemas', schemadir])
12
+
13
+ print('Updating desktop icon cache…')
14
+ subprocess.call(['gtk-update-icon-cache', '-qtf', iconcachedir])
0 commit comments