[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/04: gnu: ecl: Do not compile the deprecated MIT-RT.
From: |
guix-commits |
Subject: |
02/04: gnu: ecl: Do not compile the deprecated MIT-RT. |
Date: |
Sun, 6 Oct 2019 08:20:42 -0400 (EDT) |
ambrevar pushed a commit to branch master
in repository guix.
commit fd0f8860ec667d091abb34f1e4dda4911e834dee
Author: Guillaume Le Vaillant <address@hidden>
Date: Thu Oct 3 11:01:11 2019 +0200
gnu: ecl: Do not compile the deprecated MIT-RT.
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 80ceb95..3b810f4 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