summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--guix/build/meson-build-system.scm10
1 files changed, 5 insertions, 5 deletions
diff --git a/guix/build/meson-build-system.scm b/guix/build/meson-build-system.scm
index d11a5d8e18..057bbdf017 100644
--- a/guix/build/meson-build-system.scm
+++ b/guix/build/meson-build-system.scm
@@ -75,12 +75,12 @@
(chdir build-dir)
(apply invoke "meson" "setup" args)))
-(define* (build #:key parallel-build?
- #:allow-other-keys)
+(define* (build #:key parallel-build? #:allow-other-keys)
"Build a given meson package."
- (invoke "ninja" "-j" (if parallel-build?
- (number->string (parallel-job-count))
- "1")))
+ (invoke "ninja" "--verbose"
+ "-j" (if parallel-build?
+ (number->string (parallel-job-count))
+ "1")))
(define* (check #:key tests? test-options parallel-tests?
#:allow-other-keys)