Skip to content
Snippets Groups Projects
Commit 90fad288 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

emacs: Disable build traces produced by the daemon.

* emacs/guix-main.scm (process-package-actions,
  package-source-build-derivation): Pass #:print-build-trace #f to
  'set-build-options', to reduce verbosity.
parent e43c2a0b
No related branches found
No related tags found
No related merge requests found
......@@ -857,6 +857,7 @@ (define* (process-package-actions
(derivations (list derivation))
(new-profile (derivation->output-path derivation)))
(set-build-options store
#:print-build-trace #f
#:use-substitutes? use-substitutes?)
(show-manifest-transaction store manifest transaction
#:dry-run? dry-run?)
......@@ -908,6 +909,7 @@ (define* (package-source-build-derivation package-id #:key dry-run?
(let* ((derivation (package-source-derivation store source))
(derivations (list derivation)))
(set-build-options store
#:print-build-trace #f
#:use-substitutes? use-substitutes?)
(show-what-to-build store derivations
#:use-substitutes? use-substitutes?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment