[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/07: gnu: make-blis: Always return #T from configure phase.
From: |
guix-commits |
Subject: |
02/07: gnu: make-blis: Always return #T from configure phase. |
Date: |
Sun, 28 Apr 2019 10:06:10 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 1ec17821069601cbc45b31b4d80973c0a8947f35
Author: Ricardo Wurmus <address@hidden>
Date: Sun Apr 28 09:45:44 2019 +0200
gnu: make-blis: Always return #T from configure phase.
* gnu/packages/maths.scm (make-blis)[arguments]: Use INVOKE.
---
gnu/packages/maths.scm | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 201fb9c..e4e9c52 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -3087,13 +3087,13 @@ underway to allow BLIS to select the right optimized
kernels at run time:
(lambda* (#:key outputs #:allow-other-keys)
;; This is a home-made 'configure' script.
(let ((out (assoc-ref outputs "out")))
- (zero? (system* "./configure" "-p" out
- "-d" "opt"
- "--disable-static"
- "--enable-shared"
- "--enable-threading=openmp"
+ (invoke "./configure" "-p" out
+ "-d" "opt"
+ "--disable-static"
+ "--enable-shared"
+ "--enable-threading=openmp"
- ,implementation)))))
+ ,implementation))))
(add-before 'check 'show-test-output
(lambda _
;; By default "make check" is silent. Make it verbose.
- branch master updated (7d62fa2 -> cee0612), guix-commits, 2019/04/28
- 02/07: gnu: make-blis: Always return #T from configure phase.,
guix-commits <=
- 01/07: gnu: kdevplatform: Use INVOKE., guix-commits, 2019/04/28
- 04/07: gnu: z3: Unconditionally return #T from build phases., guix-commits, 2019/04/28
- 03/07: gnu: atlas: Always return #T from build phases., guix-commits, 2019/04/28
- 06/07: gnu: hypre: Unconditionally return #T from build phases., guix-commits, 2019/04/28
- 05/07: gnu: jacal: Unconditionally return #T from configure phase., guix-commits, 2019/04/28
- 07/07: gnu: Remove unused module reference., guix-commits, 2019/04/28