diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-23 04:45:35 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-23 05:00:08 -0400 |
commit | 122ad429dce4efbf83c2ceca9fd0d7642a0878d5 (patch) | |
tree | dbf82569a68252b26818defeaf2ee26c2f3e7570 /gnu/packages/gtk.scm | |
parent | 6c23ed9b58e57edaadb0168610e760a0062a6c19 (diff) | |
download | guix-122ad429dce4efbf83c2ceca9fd0d7642a0878d5.tar guix-122ad429dce4efbf83c2ceca9fd0d7642a0878d5.tar.gz |
gnu: at-spi2-core: Use invoke.
* gnu/packages/gtk.scm (at-spi2-core)[arguments]: Use invoke.
Diffstat (limited to 'gnu/packages/gtk.scm')
-rw-r--r-- | gnu/packages/gtk.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 98f2fa1cfa..906ed30e23 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -546,7 +546,7 @@ in the GNOME project.") (lambda _ ;; Don't fail on missing '/etc/machine-id'. (setenv "DBUS_FATAL_WARNINGS" "0") - (zero? (system* "dbus-launch" "make" "check"))))))) + (invoke "dbus-launch" "make" "check")))))) (propagated-inputs ;; atspi-2.pc refers to all these. `(("dbus" ,dbus) |