summaryrefslogtreecommitdiff
path: root/build-aux/meson/meson_post_install.py
diff options
context:
space:
mode:
Diffstat (limited to 'build-aux/meson/meson_post_install.py')
-rwxr-xr-xbuild-aux/meson/meson_post_install.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/build-aux/meson/meson_post_install.py b/build-aux/meson/meson_post_install.py
deleted file mode 100755
index 15eaaa0..0000000
--- a/build-aux/meson/meson_post_install.py
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env python3
-
-# SPDX-FileCopyrightText: 2017 Giovanni Campagna
-# SPDX-License-Identifier: GPL-2.0-or-later
-
-import os
-import subprocess
-
-prefix = os.environ['MESON_INSTALL_PREFIX']
-schemadir = os.path.join(prefix, 'share', 'glib-2.0', 'schemas')
-
-if not os.environ.get('DESTDIR'):
- print('Compiling gsettings schemas...')
- subprocess.call(['glib-compile-schemas', schemadir])