diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-11-16 00:26:34 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-11-16 00:26:34 +0100 |
commit | 68c141f144b68baa98a2f48c8ff3f867d667e153 (patch) | |
tree | c8f977974ceb18b5f163c255887f5af35456f7c3 /build-aux | |
parent | 01d45404f69025c757c1800e8b64fdd29a8134a6 (diff) | |
download | patches-68c141f144b68baa98a2f48c8ff3f867d667e153.tar 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.scm | 3 |
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) |