mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 22:50:23 -05:00
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
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ (define* (configure #:key outputs (configure-flags '()) (out-of-source? #t)
|
|||
'())
|
||||
,@configure-flags)))
|
||||
(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")
|
||||
#:allow-other-keys)
|
||||
|
|
Loading…
Reference in a new issue