[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#50134] [PATCH core-updates-frozen 02/12] gnu: ocamlbuild: Fix refer
From: |
Maxime Devos |
Subject: |
[bug#50134] [PATCH core-updates-frozen 02/12] gnu: ocamlbuild: Fix reference to output. |
Date: |
Fri, 20 Aug 2021 14:48:38 +0200 |
* gnu/packages/ocaml.scm
(ocamlbuild)[arguments]<#:make-flags>: Use #$output.
---
gnu/packages/ocaml.scm | 12 +++++-------
1 file changed, 5 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index b8d52bb283..1624823394 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -456,13 +456,11 @@ depend: $(STDLIB_MLIS) $(STDLIB_DEPS)"))
(build-system ocaml-build-system)
(arguments
`(#:make-flags
- (list (string-append "OCAMLBUILD_PREFIX=" (assoc-ref %outputs "out"))
- (string-append "OCAMLBUILD_BINDIR=" (assoc-ref %outputs "out")
- "/bin")
- (string-append "OCAMLBUILD_LIBDIR=" (assoc-ref %outputs "out")
- "/lib/ocaml/site-lib")
- (string-append "OCAMLBUILD_MANDIR=" (assoc-ref %outputs "out")
- "/share/man"))
+ ,#~(list (string-append "OCAMLBUILD_PREFIX=" #$output)
+ (string-append "OCAMLBUILD_BINDIR=" #$output "/bin")
+ (string-append "OCAMLBUILD_LIBDIR=" #$output
+ "/lib/ocaml/site-lib")
+ (string-append "OCAMLBUILD_MANDIR=" #$output "/share/man"))
#:phases
(modify-phases %standard-phases
(delete 'configure))
--
2.33.0
- [bug#50134] [PATCH core-updates-frozen 00/12] Fix (assoc-ref ... "out") related Ocaml build failures, Maxime Devos, 2021/08/20
- [bug#50134] [PATCH core-updates-frozen 01/12] gnu: ocaml: Fix reference to output., Maxime Devos, 2021/08/20
- [bug#50134] [PATCH core-updates-frozen 03/12] gnu: ocamlcudf: Fix reference to output., Maxime Devos, 2021/08/20
- [bug#50134] [PATCH core-updates-frozen 06/12] gnu: ocaml-opam-file-format: Fix reference to output., Maxime Devos, 2021/08/20
- [bug#50134] [PATCH core-updates-frozen 02/12] gnu: ocamlbuild: Fix reference to output.,
Maxime Devos <=
- [bug#50134] [PATCH core-updates-frozen 04/12] gnu: ocaml-dose3: Fix reference to inputs and output., Maxime Devos, 2021/08/20
- [bug#50134] [PATCH core-updates-frozen 05/12] gnu: ocaml-cmdliner: Fix reference to output., Maxime Devos, 2021/08/20
- [bug#50134] [PATCH core-updates-frozen 08/12] gnu: ocaml-down: Fix reference to output., Maxime Devos, 2021/08/20
- [bug#50134] [PATCH core-updates-frozen 11/12] gnu: ocaml4.07-piqi: Fix reference to inputs and output., Maxime Devos, 2021/08/20
- [bug#50134] [PATCH core-updates-frozen 12/12] gnu: dedukti: Fix reference to output., Maxime Devos, 2021/08/20
- [bug#50134] [PATCH core-updates-frozen 07/12] gnu: camlzip: Fix reference to output., Maxime Devos, 2021/08/20
- [bug#50134] [PATCH core-updates-frozen 09/12] gnu: ocaml-frontc: Fix reference to output., Maxime Devos, 2021/08/20
- [bug#50134] [PATCH core-updates-frozen 10/12] gnu: omake: Fix reference to output., Maxime Devos, 2021/08/20
- [bug#50134] [PATCH core-updates-frozen 00/12] Fix (assoc-ref ... "out") related Ocaml build failures, Julien Lepiller, 2021/08/20
- bug#50134: [PATCH core-updates-frozen 00/12] Fix (assoc-ref ... "out") related Ocaml build failures, Mathieu Othacehe, 2021/08/20