From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: GNU Smalltalk: libtool: link: cannot find name of link library for `*/libc.la' Date: Sun, 03 Feb 2013 19:10:00 +0100 Message-ID: <87txpt2rrb.fsf@gnu.org> References: <87r4kyxgrt.fsf@karetnikov.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:60707) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U241B-0008GP-3i for bug-guix@gnu.org; Sun, 03 Feb 2013 13:10:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U241A-0000hE-0b for bug-guix@gnu.org; Sun, 03 Feb 2013 13:10:16 -0500 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:3652) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2419-0000gL-QT for bug-guix@gnu.org; Sun, 03 Feb 2013 13:10:15 -0500 In-Reply-To: <87r4kyxgrt.fsf@karetnikov.org> (Nikita Karetnikov's message of "Sat, 02 Feb 2013 21:38:57 -0500") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: Nikita Karetnikov Cc: bug-guix@gnu.org Nikita Karetnikov skribis: > (lambda* (#:key outputs #:allow-other-keys) > (let ((libc (assoc-ref %build-inputs "libc")) > (out (assoc-ref outputs "out"))) > (substitute* "libc.la.in" > (("@LIBC_SO_NAME@") libc) Should be (string-append libc "/lib/libc.so"), I guess. > (("@LIBC_SO_DIR@") out)))) Should probably be (string-append libc "/lib"). Can you try that? TIA, Ludo=E2=80=99.