From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: libtool archives introduce unwanted inputs to build Date: Tue, 15 Mar 2016 17:14:53 +0100 Message-ID: <87h9g7n2f6.fsf@gnu.org> References: <1457959093-5504-1-git-send-email-iyzsong@gmail.com> <878u1kjya9.fsf@member.fsf.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59586) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1afrca-0003cC-Im for guix-devel@gnu.org; Tue, 15 Mar 2016 12:15:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1afrcX-000647-49 for guix-devel@gnu.org; Tue, 15 Mar 2016 12:15:00 -0400 In-Reply-To: <878u1kjya9.fsf@member.fsf.org> (=?utf-8?B?IuWui+aWh+atpiIn?= =?utf-8?B?cw==?= message of "Tue, 15 Mar 2016 10:00:14 +0800") 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?5a6L5paH5q2m?= Cc: guix-devel@gnu.org iyzsong@member.fsf.org (=E5=AE=8B=E6=96=87=E6=AD=A6) skribis: > Report by Jookia in #guix that with my gdk-pixbuf+svg patches, > thunar still can't find SVG icons, it's linked with the old gdk-pixbuf. > > While the build inputs of =E2=80=98thunar=E2=80=99 only have =E2=80=98gdk= -pixbuf+svg=E2=80=99, one > of its input =E2=80=98libnotify=E2=80=99 was build with =E2=80=98gdk-pixb= uf=E2=80=99. It didn=E2=80=99t > propagated it but it=E2=80=99s in =E2=80=98libnotify.la=E2=80=99. > > Remove =E2=80=98gdk-pixbuf=E2=80=99 from libnotify=E2=80=99s inputs or th= e =E2=80=98libnotify.la=E2=80=99 file > will fix thunar. > > So libtool archives are the hidden propagated-inputs, maybe we should > remove them all? I don=E2=80=99t think so. :-) >From what I understand the problem is that we end up with the two variants of gdk-pixbuf in the dependency graph, and it turns out that it=E2=80=99s not the one we were hoping for that gets picked up. The solution to this is to =E2=80=9Cdebug=E2=80=9D the dependency graph and= arrange things so that the dependency graph of GTK+ includes only one variant of gdk-pixbuf. (It might be that it=E2=80=99s easier said than done, but we h= ave to try!) WDYT? Ludo=E2=80=99.