diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-25 13:20:00 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-25 13:21:20 +0100 |
commit | 20fe9728c4d68f23e4cb34703810dd575cfef767 (patch) | |
tree | 8488cef3f8e573dba5f036d13abc18bd6294cc2c | |
parent | 6542b2db5db8c6d3411c7b94cf2f07367a058e66 (diff) | |
download | guix-20fe9728c4d68f23e4cb34703810dd575cfef767.tar guix-20fe9728c4d68f23e4cb34703810dd575cfef767.tar.gz |
gnu: tomsfastmath: Use INVOKE.
* gnu/packages/multiprecision.scm (tomsfastmath)[arguments]: Use INVOKE in
"check" phase.
-rw-r--r-- | gnu/packages/multiprecision.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/multiprecision.scm b/gnu/packages/multiprecision.scm index 71e1efcd8c..c17321a9b3 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 |