gnu: tomsfastmath: Use INVOKE.
* gnu/packages/multiprecision.scm (tomsfastmath)[arguments]: Use INVOKE in "check" phase.
This commit is contained in:
parent
6542b2db5d
commit
20fe9728c4
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue