diff options
author | Maxime Devos <maximedevos@telenet.be> | 2021-08-20 14:48:44 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-08-20 18:33:51 +0200 |
commit | ce8c675a18b2af4659c8b88aaa004882d168aed0 (patch) | |
tree | 3ba964adacb26a7aa82a33112407660cb12d2c77 /gnu/packages/ocaml.scm | |
parent | 06c91c7651405338c1de1d71be4f203988e3722b (diff) | |
download | guix-ce8c675a18b2af4659c8b88aaa004882d168aed0.tar.gz |
gnu: ocaml-down: Fix reference to output.
The package 'lablgtk@2.8.10' (indirect dependency of ocaml-down) fails to build so this patch could not be tested. * gnu/packages/ocaml.scm (ocaml-down)[arguments]<#:build-flags>: Use #$output. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Diffstat (limited to 'gnu/packages/ocaml.scm')
-rw-r--r-- | gnu/packages/ocaml.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 66d4460446..81e967cd34 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -701,8 +701,8 @@ repository-wide uninstallability checks.") (modify-phases %standard-phases (delete 'configure)) #:build-flags - (list "build" "--lib-dir" - (string-append (assoc-ref %outputs "out") "/lib/ocaml/site-lib")))) + ,#~(list "build" "--lib-dir" + (string-append #$output "/lib/ocaml/site-lib")))) (native-inputs `(("ocaml-findlib" ,ocaml-findlib) ("ocamlbuild" ,ocamlbuild) |