diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-16 03:18:00 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-16 05:01:50 -0400 |
commit | 0f308fe8eb59098353e9a1433510fca72106808f (patch) | |
tree | 5c6cf2204cb5b3e7abd031522645cf2ca5ab3967 | |
parent | 09a8f68b11a8f2ab8736d853ac2ed81b57483ae6 (diff) | |
download | guix-0f308fe8eb59098353e9a1433510fca72106808f.tar guix-0f308fe8eb59098353e9a1433510fca72106808f.tar.gz |
build-system/cmake: Use invoke instead of system*.
* guix/build/cmake-build-system.scm (configure): Use invoke.
-rw-r--r-- | guix/build/cmake-build-system.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/build/cmake-build-system.scm b/guix/build/cmake-build-system.scm index 6f4e05f948..9b1112f2d6 100644 --- a/guix/build/cmake-build-system.scm +++ b/guix/build/cmake-build-system.scm @@ -73,7 +73,7 @@ '()) ,@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) |