guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: cubicle: Fix build with newer ocaml-num.


From: guix-commits
Subject: 01/02: gnu: cubicle: Fix build with newer ocaml-num.
Date: Sat, 19 Jun 2021 06:54:50 -0400 (EDT)

roptat pushed a commit to branch master
in repository guix.

commit 9417fae9fb21772a86f0d279f019b0caf2d71e77
Author: Julien Lepiller <julien@lepiller.eu>
AuthorDate: Sat Jun 19 12:52:17 2021 +0200

    gnu: cubicle: Fix build with newer ocaml-num.
    
    * gnu/packages/ocaml.scm (cubicle)[arguments]: Adjust Makefile for
    changes in ocaml-num.
---
 gnu/packages/ocaml.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index a472679..3c781d5 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -4728,10 +4728,13 @@ the OCaml language.")
          (add-before 'configure 'fix-ocaml-num
            (lambda* (#:key inputs #:allow-other-keys)
              (substitute* "Makefile.in"
+               (("nums.cma") "num.cma num_core.cma")
                (("= \\$\\(FUNCTORYLIB\\)")
                 (string-append "= -I "
                                (assoc-ref inputs "ocaml-num")
-                               "/lib/ocaml/site-lib"
+                               "/lib/ocaml/site-lib/num/core -I "
+                               (assoc-ref inputs "ocaml-num")
+                               "/lib/ocaml/site-lib/num"
                                " $(FUNCTORYLIB)")))
              #t)))))
     (home-page "http://cubicle.lri.fr/";)



reply via email to

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