From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: bug#24712: Grafting of multiple-output dependencies is mishandled Date: Mon, 17 Oct 2016 23:22:53 -0400 Message-ID: <87oa2iqr1u.fsf@netris.org> References: <87oa2kf4eb.fsf@gnu.org> <87k2d6k50g.fsf@gnu.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]:36355) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bwL0Y-0000Tk-Lp for bug-guix@gnu.org; Mon, 17 Oct 2016 23:24:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bwL0U-0002XN-O2 for bug-guix@gnu.org; Mon, 17 Oct 2016 23:24:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:59450) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1bwL0U-0002XH-KM for bug-guix@gnu.org; Mon, 17 Oct 2016 23:24:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87k2d6k50g.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Tue, 18 Oct 2016 00:03:11 +0200") 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" To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 24712@debbugs.gnu.org ludo@gnu.org (Ludovic Court=C3=A8s) writes: > ludo@gnu.org (Ludovic Court=C3=A8s) skribis: > >> Mark reported on IRC that gnome-session, as of v0.11.0-1639-g34f9582, >> refers to the grafted =E2=80=9Cout=E2=80=9D of glib, but at the same tim= e refers to the >> *ungrafted* =E2=80=9Cbin=E2=80=9D output of glib: >> >> $ ./pre-inst-env guix build gnome-session >> /gnu/store/rchskrbc42yjlb85lq8zigpvynwc2zz7-gnome-session-3.20.2 >> $ guix gc -R /gnu/store/rchskrbc42yjlb85lq8zigpvynwc2zz7-gnome-session-3= .20.2|grep glib-2 >> /gnu/store/l1s4cw9g58hmcpd2qgbckfl228143qzx-glib-2.48.0 >> /gnu/store/c4rjjznraqnw7wk7zwr8ndmq7bdmj51q-glib-2.48.0-bin >> $ ./pre-inst-env guix build glib >> /gnu/store/ya5d1r6bvph3m5nisjywrnkvffpdrjfn-glib-2.48.0-bin >> /gnu/store/jav2d6c39k3amv4k1670845li7284a6q-glib-2.48.0-doc >> /gnu/store/77f9q6kvgrrwhqbzxzc10bwdwq6kd690-glib-2.48.0 >> $ ./pre-inst-env guix build glib --no-grafts >> /gnu/store/c4rjjznraqnw7wk7zwr8ndmq7bdmj51q-glib-2.48.0-bin >> /gnu/store/ib12bfrx83aawhabpp0rijgmm61gi0wg-glib-2.48.0-doc >> /gnu/store/l1s4cw9g58hmcpd2qgbckfl228143qzx-glib-2.48.0 > > I believe this is fixed by 3d47aa81ba4c19b45ce9a9ff0ece0252777ea8ed. Indeed, this seems to have improved things, thanks! Unfortunately: > Mark, could you check with the Bash replacement you wanted to add? I tried it, and now *every* derivation fails, even simple things like imported-module compiles, because 'guile-final' crashes while booting within the build container. Outside of the build container, it works fine. To make a long story short, it turns out that #24703 is the cause. My 'guile-final' is grafted, using a 'glibc-final' grafted to use the new Bash. The only problem is, 'glibc-final' is still trying to load its 'gconv' modules from the ungrafted 'glibc-final'. Thanks to 3d47aa81, there are no longer any *visible* references to the ungrafted 'glibc-final', so it's no longer being included in the build environment. Mark