From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Subject: bug#38755: icecat retains reference on clang Date: Sat, 28 Dec 2019 01:25:50 +0100 Message-ID: <8736d5cn3l.fsf@gnu.org> References: <87sgl6olru.fsf@elephly.net> <87r20qofcb.fsf@elephly.net> 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]:34458) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ikzvf-0002mV-98 for bug-guix@gnu.org; Fri, 27 Dec 2019 19:26:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ikzve-000609-Au for bug-guix@gnu.org; Fri, 27 Dec 2019 19:26:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:51909) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ikzve-000600-8L for bug-guix@gnu.org; Fri, 27 Dec 2019 19:26:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ikzve-0000Of-4Q for bug-guix@gnu.org; Fri, 27 Dec 2019 19:26:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87r20qofcb.fsf@elephly.net> (Ricardo Wurmus's message of "Fri, 27 Dec 2019 00:08:04 +0100") 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: Ricardo Wurmus Cc: 38755@debbugs.gnu.org Hi, Ricardo Wurmus skribis: > This should do the trick: > > diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm > index d5d9839e1a..e9458037a5 100644 > --- a/gnu/packages/gnuzilla.scm > +++ b/gnu/packages/gnuzilla.scm > @@ -1023,7 +1023,11 @@ from forcing GEXP-PROMISE." > (format #t "configure flags: ~s~%" flags) > (apply invoke bash > (string-append srcdir "/configure") > - flags)))) > + flags) > + ;; Remove references to store items > + (substitute* "toolkit/content/buildconfig.html" > + (("/gnu/store") "")) This should not be a literal =E2=80=9C/gnu/store=E2=80=9D, though. Perhaps= we should just use =E2=80=98remove-store-references=E2=80=99 instead of =E2=80=98subs= titute*=E2=80=99? Thanks, Ludo=E2=80=99.