nckx pushed a commit to branch master
in repository guix.

commit fbe9c80fb7a811914d0c6e66867c34e1ff70aae9
Author: Tobias Geerinckx-Rice <[email protected]>
Date:   Sat Aug 18 16:19:56 2018 +0200

    gnu: eigen: Throw exceptions on test failure.
    
    * gnu/packages/algebra.scm (eigen)[arguments]: Substitute INVOKE for
    SYSTEM*.
---
 gnu/packages/algebra.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm
index c889433..a58ad84 100644
--- a/gnu/packages/algebra.scm
+++ b/gnu/packages/algebra.scm
@@ -740,11 +740,11 @@ Sine Transform} (DST) and @dfn{Discrete Hartley 
Transform} (DHT).")
                        (setenv "EIGEN_SEED" "1") ;for reproducibility
                         ;; First build the tests, in parallel.  See
                         ;; <http://eigen.tuxfamily.org/index.php?title=Tests>.
-                        (and (zero? (system* "make" "buildtests" dash-j))
+                        (invoke "make" "buildtests" dash-j)
 
-                             ;; Then run 'CTest' with -V so we get more
-                             ;; details upon failure.
-                             (zero? (system* "ctest" "-V" dash-j)))))))))
+                        ;; Then run 'CTest' with -V so we get more
+                        ;; details upon failure.
+                        (invoke "ctest" "-V" dash-j)))))))
     (home-page "https://eigen.tuxfamily.org";)
     (synopsis "C++ template library for linear algebra")
     (description

Reply via email to