mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
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.
This commit is contained in:
parent
e43c2a0b89
commit
90fad2880d
1 changed files with 2 additions and 0 deletions
|
@ -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?
|
||||
|
|
Loading…
Reference in a new issue