mhw pushed a commit to branch core-updates
in repository guix.

commit d009c44a5846084978d383bf192a773035872150
Author: Mark H Weaver <[email protected]>
Date:   Sat Mar 17 20:22:17 2018 -0400

    gnu: dbus: Detect failures in the install phase.
    
    * gnu/packages/glib.scm (dbus)[arguments]: Use 'invoke' instead of 
'system*'.
---
 gnu/packages/glib.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
index 1581858..6709922 100644
--- a/gnu/packages/glib.scm
+++ b/gnu/packages/glib.scm
@@ -112,10 +112,10 @@
          (replace 'install
                   (lambda _
                     ;; Don't try to create /var and /etc.
-                    (system* "make"
-                             "localstatedir=/tmp/dummy"
-                             "sysconfdir=/tmp/dummy"
-                             "install"))))))
+                    (invoke "make"
+                            "localstatedir=/tmp/dummy"
+                            "sysconfdir=/tmp/dummy"
+                            "install"))))))
     (native-inputs
      `(("pkg-config" ,pkg-config)))
     (inputs

Reply via email to