ubuntu / gnome-sdk

GNOME SDK/Platform snap
22 stars 24 forks source link

Use local gtk binaries #111

Closed sergio-costas closed 1 year ago

sergio-costas commented 1 year ago

The "caches" part installs gtk-update-icon-cache, libglib2.0-bin and shared-mime-info .deb packages to use some of their binaries. Unfortunately, the $PATH puts before the built binaries instead of the ones in the system, but the libraries are from the system. This can result in a failure if a new version being compiled requires a new call in the libraries.

In fact, updating in gnome-sdk glib to the last version triggers this problem.

This patch fixes it.

sergio-costas commented 1 year ago

Maybe setting LD_LIBRARY_PATH... I'll try it.

sergio-costas commented 1 year ago

@kenvandine Done.