maint: 'check-available-binaries' forces use of the official servers.

* build-aux/check-available-binaries.scm: Pass #:substitute-urls to
'set-build-options'.
This commit is contained in:
Ludovic Courtès 2017-05-08 15:36:01 +02:00
parent d9a0bd4c69
commit 8872fc0e09
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@ -41,7 +41,9 @@
'("mips64el-linux-gnuabi64")))
(total (append native cross)))
(set-build-options store #:use-substitutes? #t)
(set-build-options store
#:use-substitutes? #t
#:substitute-urls %default-substitute-urls)
(let* ((total (map derivation->output-path total))
(available (substitutable-paths store total))
(missing (lset-difference string=? total available)))