diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-12-14 18:04:27 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-12-14 18:04:27 +0100 |
commit | 7f131cf3681afe62c84db66e48430de9e54e7d7d (patch) | |
tree | 64b06bef8bd8470bc9ca07c2eb77ef92cdbdcc5b /distro | |
parent | 9d1d434cd07d8a0372b113c2c0efacd2eb6e258a (diff) |
distro: Fix incorrect "bash" input for gcc-boot0-wrapped.
* distro/packages/base.scm (gcc-boot0-wrapped): Fix incorrect "bash" input.
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 30bd804b56..f782d78895 100644 --- a/distro/packages/base.scm +++ b/distro/packages/base.scm @@ -803,7 +803,7 @@ exec ~a/bin/~a-gcc -B~a/lib -Wl,-dynamic-linker -Wl,~a/~a \"$@\"~%" `(("binutils" ,binutils-boot0) ("gcc" ,gcc-boot0) ("libc" ,glibc-final) - ("bash" ,(assoc-ref %boot1-inputs "bash")))) + ,(assoc "bash" %boot1-inputs))) (inputs '()))) (define %boot2-inputs |