From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Lepiller Subject: bug#38755: icecat retains reference on clang Date: Sun, 29 Dec 2019 00:05:28 +0100 Message-ID: References: <87sgl6olru.fsf@elephly.net> <87r20qofcb.fsf@elephly.net> <8736d5cn3l.fsf@gnu.org> <20191228194740.GR23018@E5400> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:51383) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ilL9n-0003WY-OW for bug-guix@gnu.org; Sat, 28 Dec 2019 18:06:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ilL9m-0002Q2-Ka for bug-guix@gnu.org; Sat, 28 Dec 2019 18:06:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:53099) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ilL9m-0002PC-Gw for bug-guix@gnu.org; Sat, 28 Dec 2019 18:06:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ilL9m-0005MR-BU for bug-guix@gnu.org; Sat, 28 Dec 2019 18:06:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <20191228194740.GR23018@E5400> 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: Efraim Flashner Cc: 38755@debbugs.gnu.org Le 28 d=C3=A9cembre 2019 20:47:40 GMT+01:00, Efraim Flashner a =C3=A9crit : >On Sat, Dec 28, 2019 at 01:25:50AM +0100, Ludovic Court=C3=A8s wrote: >> Hi, >>=20 >> Ricardo Wurmus skribis: >>=20 >> > This should do the trick: >> > >> > diff --git a/gnu/packages/gnuzilla=2Escm b/gnu/packages/gnuzilla=2Esc= m >> > index d5d9839e1a=2E=2Ee9458037a5 100644 >> > --- a/gnu/packages/gnuzilla=2Escm >> > +++ b/gnu/packages/gnuzilla=2Escm >> > @@ -1023,7 +1023,11 @@ from forcing GEXP-PROMISE=2E" >> > (format #t "configure flags: ~s~%" flags) >> > (apply invoke bash >> > (string-append srcdir "/configure") >> > - flags)))) >> > + flags) >> > + ;; Remove references to store items >> > + (substitute* "toolkit/content/buildconfig=2Ehtml" >> > + (("/gnu/store") "")) >>=20 >> This should not be a literal =E2=80=9C/gnu/store=E2=80=9D, though=2E P= erhaps we should >> just use =E2=80=98remove-store-references=E2=80=99 instead of =E2=80=98= substitute*=E2=80=99? >>=20 > >This way we still get a listing of exactly which store items were used >without needing to refer to them exactly=2E It shouldn't be literaly /gnu/store, because one could use a different sto= re path=2E Can we access the store path from a phase code?