mhw pushed a commit to branch core-updates
in repository guix.
commit 0c5c788fad88836abdc0a0dee13b3436791fb735
Author: Mark H Weaver <[email protected]>
Date: Fri Mar 23 02:20:18 2018 -0400
gnu: gdk-pixbuf+svg: Use invoke.
* gnu/packages/gtk.scm (gdk-pixbuf+svg): Use invoke in
the 'register-svg-loader' phase.
---
gnu/packages/gtk.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 198810c..2fd1fbb 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -1,7 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Andreas Enge <[email protected]>
;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018 Ludovic Courtès
<[email protected]>
-;;; Copyright © 2014, 2015, 2017 Mark H Weaver <[email protected]>
+;;; Copyright © 2014, 2015, 2017, 2018 Mark H Weaver <[email protected]>
;;; Copyright © 2014 Eric Bavier <[email protected]>
;;; Copyright © 2015 Federico Beffa <[email protected]>
;;; Copyright © 2015 Paul van der Walt <[email protected]>
@@ -513,8 +513,10 @@ in the GNOME project.")
(find-files librsvg "^libpixbufloader-.*\\.so$")))
(gdk-pixbuf-query-loaders
(string-append out "/bin/gdk-pixbuf-query-loaders")))
- (zero? (apply system* `(,gdk-pixbuf-query-loaders
- "--update-cache" ,@loaders)))))))))
+ (apply invoke
+ gdk-pixbuf-query-loaders
+ "--update-cache"
+ loaders)))))))
(synopsis
"GNOME image loading and manipulation library, with SVG support")))