e8b72a2a59
* Add dconf and dependencies to the moduleset and add libxml2 dependency to gnome-shell-build-setup.sh * if we can't ping the dconf D-Bus service, try to activate it manually. * Stop forcing GConf via GSETTINGS_BACKEND https://bugzilla.gnome.org/show_bug.cgi?id=622308
25 lines
620 B
Bash
25 lines
620 B
Bash
#!/bin/sh
|
|
|
|
if [ -f "$0.in" ]
|
|
then
|
|
scriptDir="`dirname $0`"
|
|
uiDir="$scriptDir/../data"
|
|
jsDir="$scriptDir/../js"
|
|
schemaDir="$scriptDir/../data"
|
|
else
|
|
uiDir="@pkgdatadir@"
|
|
jsDir="@pkgdatadir@/js"
|
|
schemaDir="@datadir@/glib-2.0/schemas"
|
|
fi
|
|
|
|
progName="`basename $0`"
|
|
localeDir="@localedir@"
|
|
uiFile="$uiDir/clock-preferences.ui"
|
|
export GJS_PATH="$jsDir"
|
|
export GSETTINGS_SCHEMA_DIR="$schemaDir"
|
|
|
|
@GJS_CONSOLE@ -c "const ClockPreferences = imports.prefs.clockPreferences;
|
|
ClockPreferences.main({ progName: '$progName',
|
|
uiFile: '$uiFile',
|
|
localeDir: '$localeDir' });"
|