diff options
author | Marek Benc <dusxmt@gmx.com> | 2015-09-04 13:22:17 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-09-04 13:50:16 +0200 |
commit | 66feaa320ecbe3e4fcc2b2d83c261b3839641f77 (patch) | |
tree | 9353670a38d5c33739ddb1d9a96e542a8c9550b4 /gnu | |
parent | 52f62492b08f9e2cc594c4731c114b179259a4ba (diff) | |
download | guix-66feaa320ecbe3e4fcc2b2d83c261b3839641f77.tar guix-66feaa320ecbe3e4fcc2b2d83c261b3839641f77.tar.gz |
gnu: bootstrap: Add the location of ld.so on GNU/Hurd.
* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Add the dynamic
linker for i686-gnu and i585-gnu.
Signed-off-by: Manolis Ragkousis <manolis837@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bootstrap.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm index f3c1c5a617..8c0a59ad70 100644 --- a/gnu/packages/bootstrap.scm +++ b/gnu/packages/bootstrap.scm @@ -164,6 +164,8 @@ successful, or false to signal an error." ((string=? system "i686-linux") "/lib/ld-linux.so.2") ((string=? system "armhf-linux") "/lib/ld-linux-armhf.so.3") ((string=? system "mips64el-linux") "/lib/ld.so.1") + ((string=? system "i586-gnu") "/lib/ld.so.1") + ((string=? system "i686-gnu") "/lib/ld.so.1") ;; XXX: This one is used bare-bones, without a libc, so add a case ;; here just so we can keep going. |