gnu: ocamlcudf: Fix reference to output.

* gnu/packages/ocaml.scm
  (ocamlcudf)[arguments]<#:make-flags>: Use #$output.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
Maxime Devos 2021-08-20 14:48:39 +02:00 committed by Mathieu Othacehe
parent dd32e0ecfe
commit 04b909829c
No known key found for this signature in database
GPG key ID: 8354763531769CA6

View file

@ -583,10 +583,9 @@ (define-public ocaml-cudf
("ocaml-ounit" ,ocaml-ounit)))
(arguments
`(#:make-flags
(list
"all" "opt"
(string-append "BINDIR=" (assoc-ref %outputs "out")
"/bin"))
,#~(list
"all" "opt"
(string-append "BINDIR=" #$output "/bin"))
#:phases
(modify-phases %standard-phases
(delete 'configure))))