build-system/cmake: Use invoke instead of system*.
* guix/build/cmake-build-system.scm (configure): Use invoke.
This commit is contained in:
parent
09a8f68b11
commit
0f308fe8eb
|
@ -73,7 +73,7 @@
|
||||||
'())
|
'())
|
||||||
,@configure-flags)))
|
,@configure-flags)))
|
||||||
(format #t "running 'cmake' with arguments ~s~%" args)
|
(format #t "running 'cmake' with arguments ~s~%" args)
|
||||||
(zero? (apply system* "cmake" args)))))
|
(apply invoke "cmake" args))))
|
||||||
|
|
||||||
(define* (check #:key (tests? #t) (parallel-tests? #t) (test-target "test")
|
(define* (check #:key (tests? #t) (parallel-tests? #t) (test-target "test")
|
||||||
#:allow-other-keys)
|
#:allow-other-keys)
|
||||||
|
|
Loading…
Reference in New Issue