guix-commits
[Top][All Lists]
Advanced

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

27/27: gnu: tomsfastmath: Use INVOKE.


From: guix-commits
Subject: 27/27: gnu: tomsfastmath: Use INVOKE.
Date: Fri, 25 Jan 2019 07:21:35 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 20fe9728c4d68f23e4cb34703810dd575cfef767
Author: Ricardo Wurmus <address@hidden>
Date:   Fri Jan 25 13:20:00 2019 +0100

    gnu: tomsfastmath: Use INVOKE.
    
    * gnu/packages/multiprecision.scm (tomsfastmath)[arguments]: Use INVOKE in
    "check" phase.
---
 gnu/packages/multiprecision.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/multiprecision.scm b/gnu/packages/multiprecision.scm
index 71e1efc..c17321a 100644
--- a/gnu/packages/multiprecision.scm
+++ b/gnu/packages/multiprecision.scm
@@ -255,11 +255,11 @@ and numerical quadrature programs are included.")
          (delete 'configure)            ;no configuration
          (replace 'check
            (lambda* (#:key make-flags #:allow-other-keys)
-             (and (zero? (apply system* "make"
-                                "stest" "test_standalone"
-                                make-flags))
-                  (zero? (system* "./stest"))
-                  (zero? (system* "./test")))))
+             (apply invoke "make"
+                    "stest" "test_standalone"
+                    make-flags)
+             (invoke "./stest")
+             (invoke "./test")))
          (add-before 'install 'install-nogroup
            (lambda _
              ;; Let permissions inherit from the current process



reply via email to

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