summaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-11-16 00:26:34 +0100
committerLudovic Courtès <ludo@gnu.org>2012-11-16 00:26:34 +0100
commit68c141f144b68baa98a2f48c8ff3f867d667e153 (patch)
treec8f977974ceb18b5f163c255887f5af35456f7c3 /build-aux
parent01d45404f69025c757c1800e8b64fdd29a8134a6 (diff)
downloadguix-patches-68c141f144b68baa98a2f48c8ff3f867d667e153.tar
guix-patches-68c141f144b68baa98a2f48c8ff3f867d667e153.tar.gz
distro: Rebuild bootstrap Binutils and GCC.
These new binaries are built with the `--with-lib-path' and `--with-local-prefix' flags, respectively, as introduced in commit 01d4540. * distro/packages/bootstrap.scm (%bootstrap-coreutils&co, %bootstrap-glibc): Update URL. (%bootstrap-binutils, %bootstrap-gcc): Update URL and hashes. * build-aux/download.scm (file-name->uri): Update URL.
Diffstat (limited to 'build-aux')
-rw-r--r--build-aux/download.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/build-aux/download.scm b/build-aux/download.scm
index 9da39155ea..4c1a1a6e5d 100644
--- a/build-aux/download.scm
+++ b/build-aux/download.scm
@@ -34,7 +34,8 @@
"Return the URI for FILE."
(match (string-tokenize file (char-set-complement (char-set #\/)))
((_ ... system basename)
- (string->uri (string-append %url-base "/" system "/" basename)))))
+ (string->uri (string-append %url-base "/" system
+ "/20121115/" basename)))))
(match (command-line)
((_ file expected-hash)