diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-12-20 01:33:29 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-12-20 01:38:56 +0100 |
commit | 0f0995521393b9ec1733de3475bf74c89732e556 (patch) | |
tree | 6efed86d019eed85485411410f7befec91015a5f /build-aux | |
parent | 5d4fd2671aaadc5b0b7e0c331fa5e2a1d7e5c4d8 (diff) | |
download | guix-0f0995521393b9ec1733de3475bf74c89732e556.tar guix-0f0995521393b9ec1733de3475bf74c89732e556.tar.gz |
distro: Update bootstrap binaries.
Use bootstrap binaries that were generated with the `make-bootstrap'
changes introduced in previous commit.
* Makefile.am (nodist_bootstrap_x86_64_linux_DATA,
nodist_bootstrap_i686_linux_DATA): Change Guile tarball name.
(distro/packages/bootstrap/x86_64-linux/guile-2.0.7.tar.xz,
distro/packages/bootstrap/i686-linux/guile-2.0.7.tar.xz): New targets.
(distro/packages/bootstrap/x86_64-linux/guile-bootstrap-2.0.6.tar.xz,
distro/packages/bootstrap/i686-linux/guile-bootstrap-2.0.6.tar.xz):
Remove.
* build-aux/download.scm (file-name->uri): Use "20121219" directory.
* distro/packages/bootstrap.scm (%bootstrap-guile): Update file name.
(%bootstrap-coreutils&co, %bootstrap-binutils, %bootstrap-glibc,
%bootstrap-gcc): Update directory name and hashes.
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/download.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/download.scm b/build-aux/download.scm index 4c1a1a6e5d..f5d23f2701 100644 --- a/build-aux/download.scm +++ b/build-aux/download.scm @@ -35,7 +35,7 @@ (match (string-tokenize file (char-set-complement (char-set #\/))) ((_ ... system basename) (string->uri (string-append %url-base "/" system - "/20121115/" basename))))) + "/20121219/" basename))))) (match (command-line) ((_ file expected-hash) |