gnu: eudev: Use invoke instead of system*.
* gnu/packages/linux.scm (eudev)[arguments]: Use invoke.
This commit is contained in:
parent
05f6e60141
commit
957a99ab97
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue