update_gtk_icon_cache: Fix for GTK4-only builds

Try to execute both gtk-update-icon-cache and
gtk4-update-icon-cache after checking whether the
commands are available.

This attempts to match what gtk-icon-cache.bbclass is doing.

This fixes running update_gtk_icon_cache during do_rootfs
for an image that contains only GTK4 related packages.

(From OE-Core rev: 9de44606319c1bcf5a0a80399073e391954dfdbe)

Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
This commit is contained in:
Zoltán Böszörményi 2023-12-06 10:20:50 +01:00 committed by Steve Sakoman
parent 4a256d442c
commit 88430ae8b7

View File

@ -11,7 +11,11 @@ $STAGING_DIR_NATIVE/${libdir_native}/gdk-pixbuf-2.0/gdk-pixbuf-query-loaders --u
for icondir in $D/usr/share/icons/*/ ; do
if [ -d $icondir ] ; then
gtk-update-icon-cache -fqt $icondir
for gtkuic_cmd in gtk-update-icon-cache gtk4-update-icon-cache ; do
if [ -n "$(which $gtkuic_cmd)" ]; then
$gtkuic_cmd -fqt $icondir
fi
done
fi
done