diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-17 20:22:17 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-17 20:49:05 -0400 |
commit | d009c44a5846084978d383bf192a773035872150 (patch) | |
tree | 49c48ffa24167dff0e95abfd562744967ed78d87 /gnu/packages/glib.scm | |
parent | b4291db238a3d451429783cfda366fd2f3ef73d1 (diff) | |
download | patches-d009c44a5846084978d383bf192a773035872150.tar patches-d009c44a5846084978d383bf192a773035872150.tar.gz |
gnu: dbus: Detect failures in the install phase.
* gnu/packages/glib.scm (dbus)[arguments]: Use 'invoke' instead of 'system*'.
Diffstat (limited to 'gnu/packages/glib.scm')
-rw-r--r-- | gnu/packages/glib.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index 1581858320..67099227d3 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 |