From 074cd595bbcd343f86aad09794d8781846ff1927 Mon Sep 17 00:00:00 2001 From: Nicolò Balzarotti Date: Sun, 17 May 2020 14:46:25 +0200 Subject: gnu: lm-sensors: Patch references to ‘egrep’. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/linux.scm (lm-sensors)[arguments]: Patch unqualified references to ‘egrep’ as well as ‘grep’. Co-authored-by: Tobias Geerinckx-Rice --- 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 aa52068794..750111f4e1 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3541,9 +3541,9 @@ country-specific regulations for the wireless spectrum.") (("cat ") (string-append (assoc-ref inputs "coreutils") "/bin/cat ")) - (("grep ") + (("e?grep " match) (string-append (assoc-ref inputs "grep") - "/bin/grep ")) + "/bin/" match)) (("sed -e") (string-append (assoc-ref inputs "sed") "/bin/sed -e")) -- cgit v1.2.3