guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

23/30: gnu: eudev: Use invoke instead of system*.


From: Mark H. Weaver
Subject: 23/30: gnu: eudev: Use invoke instead of system*.
Date: Fri, 16 Mar 2018 05:03:38 -0400 (EDT)

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

commit 957a99ab971d4164286e7f0d6c851d6bf05f7598
Author: Mark H Weaver <address@hidden>
Date:   Fri Mar 16 02:12:24 2018 -0400

    gnu: eudev: Use invoke instead of system*.
    
    * gnu/packages/linux.scm (eudev)[arguments]: Use invoke.
---
 gnu/packages/linux.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 2f52df9..4665bfd 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -2008,8 +2008,8 @@ from the module-init-tools project.")
              ;; Build OUT/etc/udev/hwdb.bin.  This allows 'lsusb' and
              ;; similar tools to display product names.
              (let ((out (assoc-ref outputs "out")))
-               (zero? (system* (string-append out "/bin/udevadm")
-                               "hwdb" "--update"))))))
+               (invoke (string-append out "/bin/udevadm")
+                       "hwdb" "--update")))))
        #:configure-flags (list "--enable-manpages")))
     (native-inputs
      `(("autoconf" ,autoconf)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]