Skip to content

Commit

Permalink
Add missing meson folder
Browse files Browse the repository at this point in the history
  • Loading branch information
donadigo committed Aug 20, 2017
1 parent 9f25536 commit 50e64dc
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions meson/post_install.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/env python3

import os
import subprocess

schemadir = os.path.join(os.environ['MESON_INSTALL_PREFIX'], 'share', 'glib-2.0', 'schemas')

if not os.environ.get('DESTDIR'):
print('Compiling gsettings schemas...')
subprocess.call(['glib-compile-schemas', schemadir])

0 comments on commit 50e64dc

Please sign in to comment.