Skip to content

Commit 50e64dc

Browse files
committed
Add missing meson folder
1 parent 9f25536 commit 50e64dc

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

meson/post_install.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env python3
2+
3+
import os
4+
import subprocess
5+
6+
schemadir = os.path.join(os.environ['MESON_INSTALL_PREFIX'], 'share', 'glib-2.0', 'schemas')
7+
8+
if not os.environ.get('DESTDIR'):
9+
print('Compiling gsettings schemas...')
10+
subprocess.call(['glib-compile-schemas', schemadir])

0 commit comments

Comments
 (0)