gnu: sed: Use 'modify-phases' syntax.

* gnu/packages/base.scm (sed)[arguments]: Use 'modify-phases' syntax.
This commit is contained in:
Efraim Flashner 2016-11-27 10:25:45 +02:00
parent b7a5a4821f
commit 51c8e2996c
No known key found for this signature in database
GPG Key ID: F4C1D3917EACEE93
1 changed files with 11 additions and 10 deletions

View File

@ -131,16 +131,17 @@ including, for example, recursive directory searching.")
(arguments (arguments
(if (%current-target-system) (if (%current-target-system)
'() '()
`(#:phases (alist-cons-before `(#:phases
'patch-source-shebangs 'patch-test-suite (modify-phases %standard-phases
(lambda* (#:key inputs #:allow-other-keys) (add-before 'patch-source-shebangs 'patch-test-suite
(let ((bash (assoc-ref inputs "bash"))) (lambda* (#:key inputs #:allow-other-keys)
(patch-makefile-SHELL "testsuite/Makefile.tests") (let ((bash (assoc-ref inputs "bash")))
(substitute* '("testsuite/bsd.sh" (patch-makefile-SHELL "testsuite/Makefile.tests")
"testsuite/bug-regex9.c") (substitute* '("testsuite/bsd.sh"
(("/bin/sh") "testsuite/bug-regex9.c")
(string-append bash "/bin/bash"))))) (("/bin/sh")
%standard-phases)))) (string-append bash "/bin/bash")))
#t)))))))
(description (description
"Sed is a non-interactive, text stream editor. It receives a text "Sed is a non-interactive, text stream editor. It receives a text
input from a file or from standard input and it then applies a series of text input from a file or from standard input and it then applies a series of text