gnu: lm-sensors: Fix substitution of grep.

* gnu/packages/linux.scm (lm-sensors)[arguments]: Substitute occurrences of
"grep".
This commit is contained in:
Ricardo Wurmus 2019-12-09 10:54:30 +01:00
parent a7a492899a
commit 0bfa8744ae
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -3027,9 +3027,9 @@ (define-public lm-sensors
(("cat ")
(string-append (assoc-ref inputs "coreutils")
"/bin/cat "))
(("egrep ")
(("grep ")
(string-append (assoc-ref inputs "grep")
"/bin/egrep "))
"/bin/grep "))
(("sed -e")
(string-append (assoc-ref inputs "sed")
"/bin/sed -e"))