From 98fe76c36134f78346b18f62b09cc1ba42d11dde Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sun, 20 Mar 2016 17:10:41 +0100 Subject: [PATCH 2/4] gnu: chicken: Use "modify-phases" syntax. * gnu/packages/scheme.scm (chicken)[arguments]: Use "modify-phases" syntax. --- gnu/packages/scheme.scm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm index 5361f23..cb113e8 100644 --- a/gnu/packages/scheme.scm +++ b/gnu/packages/scheme.scm @@ -326,11 +326,12 @@ mashups, office (web agendas, mail clients, ...), etc.") ;; No `configure' script; run "make check" after "make install" as ;; prescribed by README. - #:phases (alist-cons-after - 'install 'check - (assoc-ref %standard-phases 'check) - (fold alist-delete %standard-phases - '(configure check))) + #:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'check) + (add-after 'install 'check + (assoc-ref %standard-phases 'check))) #:make-flags (let ((out (assoc-ref %outputs "out"))) (list "PLATFORM=linux" -- 2.6.3