From 0bfa8744ae7f085416da15b234dcfdfa08c3b104 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 9 Dec 2019 10:54:30 +0100 Subject: [PATCH] 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 1749bade85..991dde9c1a 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -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"))