blob: 85614c661a6168f979fa8b6e17f767903c210091 (
plain)
1
2
3
4
5
6
7
8
|
# Produce and export schemas needed by GSettings
# source tools/maint/gsettings.inc
find . -type d -name schemas -exec glib-compile-schemas {} \;
export GSETTINGS_SCHEMA_DIR=$( find . -type d -name schemas -printf "$PWD/%P:" | sed 's/:$//' )
|