diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-04-16 09:51:38 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-04-16 09:51:38 +0200 |
commit | b7615c56a751635fa4db8d0ecfd2bd18f0c3c3df (patch) | |
tree | e751de45d6f014d79e9fe0f71179cddca545f2ff /guix | |
parent | 9fd6c2ba949efef394291f37f9e7a098a80001fd (diff) | |
download | gnu-guix-b7615c56a751635fa4db8d0ecfd2bd18f0c3c3df.tar gnu-guix-b7615c56a751635fa4db8d0ecfd2bd18f0c3c3df.tar.gz |
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.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/build/haskell-build-system.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/guix/build/haskell-build-system.scm b/guix/build/haskell-build-system.scm index e17967fb72..d382ee403d 100644 --- a/guix/build/haskell-build-system.scm +++ b/guix/build/haskell-build-system.scm @@ -196,13 +196,13 @@ generate the cache as it would clash in user profiles." (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) |