rekado pushed a commit to branch master
in repository guix.

commit 0bfa8744ae7f085416da15b234dcfdfa08c3b104
Author: Ricardo Wurmus <[email protected]>
Date:   Mon Dec 9 10:54:30 2019 +0100

    gnu: lm-sensors: Fix substitution of grep.
    
    * gnu/packages/linux.scm (lm-sensors)[arguments]: Substitute occurrences of
    "grep".
---
 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 1749bad..991dde9 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"))

Reply via email to