diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-12-09 10:54:30 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-12-09 11:12:58 +0100 |
commit | 0bfa8744ae7f085416da15b234dcfdfa08c3b104 (patch) | |
tree | c5d1d43c1282d3a7dca14820eb4fe0f3d08aff10 | |
parent | a7a492899adac5047e4b11c77edd881ac1276c37 (diff) | |
download | guix-0bfa8744ae7f085416da15b234dcfdfa08c3b104.tar.gz guix-0bfa8744ae7f085416da15b234dcfdfa08c3b104.zip |
gnu: lm-sensors: Fix substitution of grep.
* gnu/packages/linux.scm (lm-sensors)[arguments]: Substitute occurrences of
"grep".
-rw-r--r-- | gnu/packages/linux.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 1749bade85..991dde9c1a 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3027,9 +3027,9 @@ country-specific regulations for the wireless spectrum.") (("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")) |