From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Benc Subject: [PATCH 3/4] gnu: bootstrap: Add the location of where ld.so is located on Hurd systems. Date: Thu, 05 Feb 2015 17:29:11 +0100 Message-ID: <54D39A57.70109@gmx.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------090103010908010104010903" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34009) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YJPIq-0005Ph-Ds for guix-devel@gnu.org; Thu, 05 Feb 2015 11:29:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YJPIp-0003Ib-Fv for guix-devel@gnu.org; Thu, 05 Feb 2015 11:29:16 -0500 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: =?UTF-8?B?THVkb3ZpYyBDb3VydMOocw==?= Cc: guix-devel@gnu.org This is a multi-part message in MIME format. --------------090103010908010104010903 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit This one should be pretty self explanatory. -- Marek. --------------090103010908010104010903 Content-Type: text/x-patch; name="git-patch-3.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="git-patch-3.patch" >From 098ca112becb95199d3e66078b75fbf5b9b54a69 Mon Sep 17 00:00:00 2001 From: Marek Benc Date: Thu, 5 Feb 2015 17:07:18 +0100 Subject: [PATCH] gnu: bootstrap: Add the location of where ld.so is located on Hurd systems. * gnu/packages/bootstrap.scm (glibc-dynamic-linker): Add the dynamic linker for i686-gnu. --- gnu/packages/bootstrap.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm index 71ccb19..6a8d09a 100644 --- a/gnu/packages/bootstrap.scm +++ b/gnu/packages/bootstrap.scm @@ -156,6 +156,7 @@ check whether everything is alright." (cond ((string=? system "x86_64-linux") "/lib/ld-linux-x86-64.so.2") ((string=? system "i686-linux") "/lib/ld-linux.so.2") ((string=? system "mips64el-linux") "/lib/ld.so.1") + ((string=? system "i686-gnu") "/lib/ld.so.1") (else (error "dynamic linker name not known for this system" system)))) -- 2.2.1 --------------090103010908010104010903--