Commit a608a3e6d072337fd4fb9de93aed9c2b723fad59
1 parent
507ad8ce
Exists in
master
and in
5 other branches
Corrigindo problema "GLib-GIO-ERROR: No Gsettings schema
Showing
1 changed file
with
12 additions
and
0 deletions
Show diff stats
makegtkruntime.sh.in
... | ... | @@ -99,6 +99,18 @@ EOF |
99 | 99 | |
100 | 100 | copy_locale $TEMPFILE |
101 | 101 | |
102 | +mkdir -p $TARGET_PATH/share/glib-2.0/schemas | |
103 | +if [ "$?" != 0 ]; then | |
104 | + echo "Can´t create schemas folder" | |
105 | + exit -1 | |
106 | +fi | |
107 | + | |
108 | +cp $GTK_PREFIX/share/glib-2.0/schemas/gschemas.compiled $TARGET_PATH/share/glib-2.0/schemas/gschemas.compiled | |
109 | +if [ "$?" != 0 ]; then | |
110 | + echo "Can´t copy gshemars.compiled" | |
111 | + exit -1 | |
112 | +fi | |
113 | + | |
102 | 114 | |
103 | 115 | } |
104 | 116 | ... | ... |