Skip to content
Snippets Groups Projects
Commit b7615c56 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

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

* guix/build/haskell-build-system.scm (%standard-phases): Add missing
  quotes, as needed since commit f8503e2b.
parent 9fd6c2ba
No related branches found
No related tags found
No related merge requests found
...@@ -196,13 +196,13 @@ (define* (haddock #:key outputs haddock? haddock-flags #:allow-other-keys) ...@@ -196,13 +196,13 @@ (define* (haddock #:key outputs haddock? haddock-flags #:allow-other-keys)
(define %standard-phases (define %standard-phases
(modify-phases gnu:%standard-phases (modify-phases gnu:%standard-phases
(add-before configure setup-compiler setup-compiler) (add-before 'configure 'setup-compiler setup-compiler)
(add-before install haddock haddock) (add-before 'install 'haddock haddock)
(add-after install register register) (add-after 'install 'register register)
(replace install install) (replace 'install install)
(replace check check) (replace 'check check)
(replace build build) (replace 'build build)
(replace configure configure))) (replace 'configure configure)))
(define* (haskell-build #:key inputs (phases %standard-phases) (define* (haskell-build #:key inputs (phases %standard-phases)
#:allow-other-keys #:rest args) #:allow-other-keys #:rest args)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment