build-system/haskell: Adjust to new 'modify-phases' syntax.

* guix/build/haskell-build-system.scm (%standard-phases): Add missing
  quotes, as needed since commit f8503e2.
This commit is contained in:
Ludovic Courtès 2015-04-16 09:51:38 +02:00
parent 9fd6c2ba94
commit b7615c56a7

View file

@ -196,13 +196,13 @@ (define* (haddock #:key outputs haddock? haddock-flags #:allow-other-keys)
(define %standard-phases
(modify-phases gnu:%standard-phases
(add-before configure setup-compiler setup-compiler)
(add-before install haddock haddock)
(add-after install register register)
(replace install install)
(replace check check)
(replace build build)
(replace configure configure)))
(add-before 'configure 'setup-compiler setup-compiler)
(add-before 'install 'haddock haddock)
(add-after 'install 'register register)
(replace 'install install)
(replace 'check check)
(replace 'build build)
(replace 'configure configure)))
(define* (haskell-build #:key inputs (phases %standard-phases)
#:allow-other-keys #:rest args)