diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-23 03:01:19 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-23 04:42:42 -0400 |
commit | 4bd9f46553a910b446066f01face0b9ff53ceb5e (patch) | |
tree | 71423388c0c1e6be5f5008279ff2da1d045c5b0c | |
parent | 257d8974e6593dc84fde42553934b1d9e40ec586 (diff) | |
download | gnu-guix-4bd9f46553a910b446066f01face0b9ff53ceb5e.tar gnu-guix-4bd9f46553a910b446066f01face0b9ff53ceb5e.tar.gz |
gnu: libsoup: Use invoke.
* gnu/packages/gnome.scm (libsoup)[arguments]: Use invoke in the custom
install phase.
-rw-r--r-- | gnu/packages/gnome.scm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 9557c5e856..5feb112e1a 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2539,12 +2539,11 @@ libxml to ease remote use of the RESTful API.") #t)) (replace 'install (lambda _ - (zero? - (system* "make" - ;; Install vala bindings into $out. - (string-append "vapidir=" %output - "/share/vala/vapi") - "install"))))))) + (invoke "make" + ;; Install vala bindings into $out. + (string-append "vapidir=" %output + "/share/vala/vapi") + "install")))))) (native-inputs `(("glib:bin" ,glib "bin") ; for glib-mkenums ("gobject-introspection" ,gobject-introspection) |