pull: Build (guix build download) first, because of the (gnutls) autoload.
* guix/scripts/pull.scm (unpack): Build (guix build download) first, as
done in 855a8ad71d
.
Reported by Andreas Enge <andreas@enge.fr>.
This commit is contained in:
parent
525ca3e912
commit
7b50c68455
|
@ -123,7 +123,12 @@ files."
|
|||
(compile-file file
|
||||
#:output-file go
|
||||
#:opts %auto-compilation-options))))
|
||||
(find-files out "\\.scm"))
|
||||
|
||||
;; XXX: Because of the autoload hack in (guix build
|
||||
;; download), we must build it first to avoid errors since
|
||||
;; (gnutls) is unavailable.
|
||||
(cons (string-append out "/guix/build/download.scm")
|
||||
(find-files out "\\.scm")))
|
||||
|
||||
;; Remove the "fake" (guix config).
|
||||
(delete-file (string-append out "/guix/config.scm"))
|
||||
|
|
Loading…
Reference in New Issue