gnu: dbus: Detect failures in the install phase.
* gnu/packages/glib.scm (dbus)[arguments]: Use 'invoke' instead of 'system*'.
This commit is contained in:
parent
b4291db238
commit
d009c44a58
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue