guix-commits
[Top][All Lists]
Advanced

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

01/04: gnu: flint: Unconditionally return #T from build phases.


From: guix-commits
Subject: 01/04: gnu: flint: Unconditionally return #T from build phases.
Date: Thu, 24 Jan 2019 15:18:20 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 50233d95707389eb526587c04f58b4281ebcaa6c
Author: Ricardo Wurmus <address@hidden>
Date:   Thu Jan 24 20:40:29 2019 +0100

    gnu: flint: Unconditionally return #T from build phases.
    
    * gnu/packages/algebra.scm (flint)[arguments]: Use INVOKE in "configure"
    phases.
---
 gnu/packages/algebra.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm
index b19b7e6..757b111 100644
--- a/gnu/packages/algebra.scm
+++ b/gnu/packages/algebra.scm
@@ -357,11 +357,11 @@ or text interfaces) or as a C++ library.")
                    (mpfr (assoc-ref inputs "mpfr")))
                ;; do not pass "--enable-fast-install", which makes the
                ;; homebrew configure process fail
-               (zero? (system*
-                       "./configure"
+               (invoke "./configure"
                        (string-append "--prefix=" out)
                        (string-append "--with-gmp=" gmp)
-                       (string-append "--with-mpfr=" mpfr)))))))))
+                       (string-append "--with-mpfr=" mpfr))
+               #t))))))
    (synopsis "Fast library for number theory")
    (description
     "FLINT is a C library for number theory.  It supports arithmetic



reply via email to

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