gnu: mercurial: Adjust for grep 3.8.
* gnu/packages/version-control.scm (mercurial)[source](modules, snippet): New fields.master
parent
b11c1d7702
commit
003fdf0a9d
|
@ -1745,7 +1745,14 @@ execution of any hook written in any language before every commit.")
|
|||
"mercurial-openssl-compat.patch"))
|
||||
(sha256
|
||||
(base32
|
||||
"1nl2726szaxyrxlyssrsir5c6vb4ci0i6g969i6xaahw1nidgica"))))
|
||||
"1nl2726szaxyrxlyssrsir5c6vb4ci0i6g969i6xaahw1nidgica"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
'(substitute* (find-files "tests" "\\.(t|sh)$")
|
||||
;; grep 3.8 emits deprecation warnings for 'egrep' and
|
||||
;; 'fgrep' which breaks expected test output.
|
||||
(("egrep") "grep -E")
|
||||
(("fgrep") "grep -F")))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:make-flags
|
||||
|
|
Reference in New Issue