gnu: chicken: Use "modify-phases" syntax.

* gnu/packages/scheme.scm (chicken)[arguments]: Use "modify-phases"
  syntax.
This commit is contained in:
Ricardo Wurmus 2016-03-20 17:10:41 +01:00
parent d0d9411015
commit acb3807079

View File

@ -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"