diff options
-rw-r--r-- | desktop/gnome-photos/gnome-photos.SlackBuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/desktop/gnome-photos/gnome-photos.SlackBuild b/desktop/gnome-photos/gnome-photos.SlackBuild index ba0ba9c3da23..579fd9f7576f 100644 --- a/desktop/gnome-photos/gnome-photos.SlackBuild +++ b/desktop/gnome-photos/gnome-photos.SlackBuild @@ -79,7 +79,9 @@ find -L . \ # gnome-photos fails to build in a fresh build environment, complaining # that it doesn't recognize svg formats. Updating the pixbuf loaders # gets it working: -/usr/bin/update-gdk-pixbuf-loaders +if [ -x /usr/bin/update-gdk-pixbuf-loaders ]; then + /usr/bin/update-gdk-pixbuf-loaders +fi mkdir build cd build |