gnu: eudev: Use invoke instead of system*.

* gnu/packages/linux.scm (eudev)[arguments]: Use invoke.
master
Mark H Weaver 2018-03-16 02:12:24 -04:00
parent 05f6e60141
commit 957a99ab97
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516
1 changed files with 2 additions and 2 deletions

View File

@ -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)