Codebase list gnome-settings-daemon / cd530348-d298-4bc4-9f55-351ed79a2061/main meson_post_install.py
cd530348-d298-4bc4-9f55-351ed79a2061/main

Tree @cd530348-d298-4bc4-9f55-351ed79a2061/main (Download .tar.gz)

meson_post_install.py @cd530348-d298-4bc4-9f55-351ed79a2061/mainraw · history · blame

#!/usr/bin/env python3

import os
import subprocess
import sys

if not os.environ.get('DESTDIR'):
  schemadir = os.path.join(sys.argv[1], 'glib-2.0', 'schemas')

  print('Compiling gsettings schemas...')
  subprocess.call(['glib-compile-schemas', schemadir])