diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-12-01 18:31:16 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-12-01 18:47:34 +0100 |
commit | e2721a05e7d778bdf845b7cb7a42fd9f76095b69 (patch) | |
tree | d2e7b3ae000b230717b9df0d0ba710f034e31753 /guix/ui.scm | |
parent | 2a4050341f10d9d3e3db0c64ff94279f3fa4d37c (diff) |
Do not set '%fresh-auto-compile'.
* guix/scripts/offload.scm (build-machines): Comment out
'(set! %fresh-auto-compile #t)' since with Guile 2.2.3 it could lead to
an actual rebuild of everything that gets loaded from there on. See
<https://bugs.gnu.org/29226>.
* guix/ui.scm (load*): Likewise.
Diffstat (limited to 'guix/ui.scm')
-rw-r--r-- | guix/ui.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/ui.scm b/guix/ui.scm index 13cbe3a0f7..9ed8f37521 100644 --- a/guix/ui.scm +++ b/guix/ui.scm @@ -195,7 +195,7 @@ messages." (catch #t (lambda () ;; XXX: Force a recompilation to avoid ABI issues. - (set! %fresh-auto-compile #t) + ;; (set! %fresh-auto-compile #t) (set! %load-should-auto-compile #t) (save-module-excursion |