summaryrefslogtreecommitdiff
path: root/guix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-06-09 18:54:52 +0200
committerLudovic Courtès <ludo@gnu.org>2014-06-09 18:55:48 +0200
commitb6b097ac8114510c380a9293bf50f797c57ff3ed (patch)
treed9ac9dbba051bed8c3e4d7ae8825d8050789c784 /guix
parent49ad317ae16abd318d4bb02e0e17260235750b6a (diff)
downloadguix-patches-b6b097ac8114510c380a9293bf50f797c57ff3ed.tar
guix-patches-b6b097ac8114510c380a9293bf50f797c57ff3ed.tar.gz
guix build: Only 'guix build' sets #:print-build-trace.
This makes 'guix package' et al. slightly less verbose, by not emitting "@ substituter-started" lines and similar. * guix/scripts/build.scm (set-build-options-from-command-line): Pass #:print-build-trace. (%default-options): Add 'print-build-trace?'.
Diffstat (limited to 'guix')
-rw-r--r--guix/scripts/build.scm2
1 files changed, 2 insertions, 0 deletions
diff --git a/guix/scripts/build.scm b/guix/scripts/build.scm
index 35b10a0ec2..6d864bfe3b 100644
--- a/guix/scripts/build.scm
+++ b/guix/scripts/build.scm
@@ -151,6 +151,7 @@ options handled by 'set-build-options-from-command-line', and listed in
#:use-build-hook? (assoc-ref opts 'build-hook?)
#:max-silent-time (assoc-ref opts 'max-silent-time)
#:timeout (assoc-ref opts 'timeout)
+ #:print-build-trace (assoc-ref opts 'print-build-trace?)
#:verbosity (assoc-ref opts 'verbosity)))
(define %standard-build-options
@@ -213,6 +214,7 @@ options handled by 'set-build-options-from-command-line', and listed in
`((system . ,(%current-system))
(substitutes? . #t)
(build-hook? . #t)
+ (print-build-trace? . #t)
(max-silent-time . 3600)
(verbosity . 0)))