gnu: tomsfastmath: Use INVOKE.

* gnu/packages/multiprecision.scm (tomsfastmath)[arguments]: Use INVOKE in
"check" phase.
This commit is contained in:
Ricardo Wurmus 2019-01-25 13:20:00 +01:00
parent 6542b2db5d
commit 20fe9728c4
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 5 additions and 5 deletions

View File

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