guix-patches
[Top][All Lists]
Advanced

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

[bug#37595] [PATCH 1/3] gnu: ecl: Do not compile the deprecated MIT-RT.


From: Guillaume Le Vaillant
Subject: [bug#37595] [PATCH 1/3] gnu: ecl: Do not compile the deprecated MIT-RT.
Date: Thu, 3 Oct 2019 11:01:11 +0200

Compiling the rt bundled with ECL prevents the ecl-rt package from compiling
properly, as ECL thinks it has already been compiled.

* gnu/packages/lisp.scm (ecl)[arguments]: Add '--without-rt' to
  'configure-flags'.
---
 gnu/packages/lisp.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index ba009bb7a6..68e27948ca 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -217,7 +217,8 @@ interface to the Tk widget system.")
               ("libgc" ,libgc)
               ("libffi" ,libffi)))
     (arguments
-     '(#:tests? #t
+     '(#:configure-flags '("--without-rt")
+       #:tests? #t
        #:parallel-tests? #f
        #:phases
        (modify-phases %standard-phases
-- 
2.23.0






reply via email to

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