This is an automated email from the git hooks/post-receive script.
rekado pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 4ca80a2 gnu: singularity: Replace references to grep.
4ca80a2 is described below
commit 4ca80a2b95bdcc4034c4189b8d43a63d094ef3bd
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Fri Aug 14 15:32:23 2020 +0200
gnu: singularity: Replace references to grep.
* gnu/packages/linux.scm (singularity)[arguments]: Replace references to
grep.
---
gnu/packages/linux.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 339796d..27ad887 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -12,7 +12,7 @@
;;; Copyright © 2016 Raymond Nicholson <[email protected]>
;;; Copyright © 2016 Mathieu Lirzin <[email protected]>
;;; Copyright © 2016, 2018, 2019, 2020 Nicolas Goaziou <[email protected]>
-;;; Copyright © 2016, 2018, 2019 Ricardo Wurmus <[email protected]>
+;;; Copyright © 2016, 2018, 2019, 2020 Ricardo Wurmus <[email protected]>
;;; Copyright © 2016 David Craven <[email protected]>
;;; Copyright © 2016 John Darrington <[email protected]>
;;; Copyright © 2016, 2017, 2018, 2019, 2020 Marius Bakke <[email protected]>
@@ -4027,6 +4027,8 @@ thanks to the use of namespaces.")
"libexec/bootstrap-scripts/functions"
"libexec/bootstrap-scripts/post.sh"
"libexec/functions")
+ (("\\| grep ")
+ (string-append "| " (which "grep") " "))
(("egrep ")
(string-append (which "egrep") " ")))
#t))