diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-10-18 11:41:12 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-10-18 11:41:12 +0200 |
commit | 683d57f420110c97b0b9b03515832d9c3cead2bc (patch) | |
tree | 1b4451ddd8dde2a1af910f21639a83284bd6c65c /distro | |
parent | f76a51add021d599f0db54b7045cbf63a6a722d1 (diff) | |
download | patches-683d57f420110c97b0b9b03515832d9c3cead2bc.tar patches-683d57f420110c97b0b9b03515832d9c3cead2bc.tar.gz |
distro: Fix bootstrapping regression recently introduced.
* distro/packages/base.scm (gcc-boot0-wrapped): Fix typo introduced in
a52e429f76282080c58444ce2ac82a1968d5f29d ("distro: Add i686 support.")
Diffstat (limited to 'distro')
-rw-r--r-- | distro/packages/base.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/distro/packages/base.scm b/distro/packages/base.scm index 5e391ed580..6633f0d1ec 100644 --- a/distro/packages/base.scm +++ b/distro/packages/base.scm @@ -1722,7 +1722,7 @@ identifier SYSTEM." (call-with-output-file "gcc" (lambda (p) (format p "#!/bin/sh -exec ~a/bin/~a-gcc -B~a/lib -Wl,-dynamic-linker -Wl,~a/lib/~a \"$@\"~%" +exec ~a/bin/~a-gcc -B~a/lib -Wl,-dynamic-linker -Wl,~a/~a \"$@\"~%" gcc triplet libc libc ,(glibc-dynamic-linker system)))) |