From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:58556) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gwrsG-0000J4-M8 for guix-patches@gnu.org; Thu, 21 Feb 2019 12:11:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gwrsF-0005Hs-KS for guix-patches@gnu.org; Thu, 21 Feb 2019 12:11:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:59029) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gwrsF-0005Hj-Gv for guix-patches@gnu.org; Thu, 21 Feb 2019 12:11:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gwrsF-0006E2-As for guix-patches@gnu.org; Thu, 21 Feb 2019 12:11:03 -0500 Subject: [bug#34609] Add missing aux-file in Makefile. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:58413) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gwrrR-00088I-Ae for guix-patches@gnu.org; Thu, 21 Feb 2019 12:10:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gwrrL-0004gS-T6 for guix-patches@gnu.org; Thu, 21 Feb 2019 12:10:13 -0500 Received: from mout.web.de ([212.227.17.12]:51797) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gwrrL-0004ej-Hm for guix-patches@gnu.org; Thu, 21 Feb 2019 12:10:07 -0500 From: Jonathan Brielmaier Message-ID: Date: Thu, 21 Feb 2019 18:09:59 +0100 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------9E6C768D284CB1B72DBBF2BB" Content-Language: en-US List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 34609@debbugs.gnu.org This is a multi-part message in MIME format. --------------9E6C768D284CB1B72DBBF2BB Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Hi, attached is a patch which fixes an error while installing ungoogled-chromium on a foreign distro. ~Jonathan --------------9E6C768D284CB1B72DBBF2BB Content-Type: text/x-patch; name="0001-Add-missing-aux-file-in-Makefile.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="0001-Add-missing-aux-file-in-Makefile.patch" =46rom 926748189fd7bba8864f74a09640535333388a01 Mon Sep 17 00:00:00 2001 From: Jonathan Brielmaier Date: Thu, 21 Feb 2019 17:42:54 +0100 Subject: [PATCH] Add missing aux-file in Makefile. Fixes installation of ungoogled-chromium on foreign distros. * Makefile.am (AUX_FILES): Add missing gnu/packages/aux-files/chromium/master-preferences.json entry. =2D-- Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.am b/Makefile.am index fec9800ce7..45f49c7bcf 100644 =2D-- a/Makefile.am +++ b/Makefile.am @@ -280,6 +280,7 @@ dist_noinst_DATA =3D guix/tests.scm guix/tests/http.sc= m # Auxiliary files for packages. AUX_FILES =3D \ + gnu/packages/aux-files/chromium/master-preferences.json \ gnu/packages/aux-files/emacs/guix-emacs.el \ gnu/packages/aux-files/linux-libre/4.20-arm.conf \ gnu/packages/aux-files/linux-libre/4.20-arm64.conf \ =2D- 2.16.4 --------------9E6C768D284CB1B72DBBF2BB--