build-system/cmake: Use invoke instead of system*.

* guix/build/cmake-build-system.scm (configure): Use invoke.
This commit is contained in:
Mark H Weaver 2018-03-16 03:18:00 -04:00
parent 09a8f68b11
commit 0f308fe8eb
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516
1 changed files with 1 additions and 1 deletions

View File

@ -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)