guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/13: gnu: ocamlcudf: Fix reference to output.


From: guix-commits
Subject: 03/13: gnu: ocamlcudf: Fix reference to output.
Date: Fri, 20 Aug 2021 12:34:05 -0400 (EDT)

mothacehe pushed a commit to branch core-updates-frozen
in repository guix.

commit 04b909829c6f7f3cb8bed53ed0f6dbf4896cc771
Author: Maxime Devos <maximedevos@telenet.be>
AuthorDate: Fri Aug 20 14:48:39 2021 +0200

    gnu: ocamlcudf: Fix reference to output.
    
    * gnu/packages/ocaml.scm
      (ocamlcudf)[arguments]<#:make-flags>: Use #$output.
    
    Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
---
 gnu/packages/ocaml.scm | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 1624823..c97f633 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -583,10 +583,9 @@ for day to day programming.")
         ("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))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]