Commit e3a0cc8d377b4d5fbbaa7f12ef4099aabafa7321

Authored by Perry Werneck
1 parent d3bbc96a
Exists in master and in 1 other branch develop

Updating schema path on macos bundle script.

Showing 1 changed file with 3 additions and 1 deletions   Show diff stats
macos/bundle
... ... @@ -136,8 +136,10 @@ cp "$(brew --prefix)/share/pw3270/colors.conf" "${res_path}"
136 136 # Bundle GLib schemas
137 137 echo "Bundling GLib schemas"
138 138 mkdir -p "${tmp}/schemas"
139   -cp "../schemas/linux/"*".xml" "${tmp}/schemas"
  139 +
  140 +cp "$(brew --prefix)$(pkg-config gtk+-3.0 --variable=prefix)/share/glib-2.0/schemas/pw3270*.gschema.xml" "${tmp}/schemas"
140 141 cp "$(pkg-config gtk+-3.0 --variable=prefix)/share/glib-2.0/schemas/org.gtk.Settings."*".gschema.xml" "${tmp}/schemas"
  142 +
141 143 glib-compile-schemas --targetdir="${res_path}" "${tmp}/schemas"
142 144  
143 145 # Create the GTK settings file
... ...