From ff0c847687ce796d61c94ca07ffa6d646339d095 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Mon, 15 Feb 2016 10:16:49 +0200 Subject: gnu: ed: Use 'modify-phases'. * gnu/packages/ed.scm (ed)[arguments]: Use 'modify-phases'. --- gnu/packages/ed.scm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'gnu/packages/ed.scm') diff --git a/gnu/packages/ed.scm b/gnu/packages/ed.scm index 953f739d31..3668aac19a 100644 --- a/gnu/packages/ed.scm +++ b/gnu/packages/ed.scm @@ -40,11 +40,12 @@ (native-inputs `(("lzip" ,lzip))) (arguments '(#:configure-flags '("CC=gcc") - #:phases (alist-cons-before 'patch-source-shebangs 'patch-test-suite - (lambda _ - (substitute* "testsuite/check.sh" - (("/bin/sh") (which "sh")))) - %standard-phases))) + #:phases + (modify-phases %standard-phases + (add-before 'patch-source-shebangs 'patch-test-suite + (lambda _ + (substitute* "testsuite/check.sh" + (("/bin/sh") (which "sh")))))))) (home-page "http://www.gnu.org/software/ed/") (synopsis "Line-oriented text editor") (description -- cgit v1.2.3