From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: bug#38755: icecat retains reference on clang Date: Fri, 27 Dec 2019 00:08:04 +0100 Message-ID: <87r20qofcb.fsf@elephly.net> References: <87sgl6olru.fsf@elephly.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:57084) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ikcGZ-0005q8-RY for bug-guix@gnu.org; Thu, 26 Dec 2019 18:10:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ikcGY-0004GR-Or for bug-guix@gnu.org; Thu, 26 Dec 2019 18:10:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:50347) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ikcGY-0004GM-Hm for bug-guix@gnu.org; Thu, 26 Dec 2019 18:10:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ikcGY-00036Q-Bz for bug-guix@gnu.org; Thu, 26 Dec 2019 18:10:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-reply-to: 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: 38755@debbugs.gnu.org --=-=-= Content-Type: text/plain This should do the trick: --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=my.patch 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") "")) + #t))) (replace 'build ;; The build system often spuriously fails. See ;; . To --=-=-= Content-Type: text/plain -- Ricardo --=-=-=--