gnu: make-blis: Always return #T from configure phase.

* gnu/packages/maths.scm (make-blis)[arguments]: Use INVOKE.
master
Ricardo Wurmus 2019-04-28 09:45:44 +02:00
parent 7055407770
commit 1ec1782106
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 6 additions and 6 deletions

View File

@ -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.