From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51163) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eA6z8-00060d-Ax for guix-patches@gnu.org; Thu, 02 Nov 2017 00:20:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eA6z5-0006od-6R for guix-patches@gnu.org; Thu, 02 Nov 2017 00:20:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:38041) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eA6z4-0006o4-RD for guix-patches@gnu.org; Thu, 02 Nov 2017 00:20:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eA6z4-0002kF-Ed for guix-patches@gnu.org; Thu, 02 Nov 2017 00:20:02 -0400 Subject: [bug#29112] [PATCH 1/3] gnu: gdm: Fix config file path. References: <87o9olbasy.fsf@ngyro.com> In-Reply-To: <87o9olbasy.fsf@ngyro.com> Resent-Message-ID: From: Timothy Sample Date: Mon, 23 Oct 2017 20:44:47 -0400 Message-ID: <87k1z9b9w0.fsf@ngyro.com> MIME-Version: 1.0 Content-Type: text/plain 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: 29112@debbugs.gnu.org * gnu/packages/gnome.scm (gdm)[arguments]<#:phases>: Fix the 'pre-configure phase so that GDM finds its config file. --- gnu/packages/gnome.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index ecfd63d25..ef52871c8 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5287,9 +5287,9 @@ libxml2.") " \"/run/current-system/profile/etc/xdg\");\n" ))) ;; Look for custom GDM conf in /run/current-system. - (substitute* '("common/gdm-settings-backend.c") + (substitute* '("common/gdm-settings-desktop-backend.c") (("GDM_CUSTOM_CONF") - "/run/current-system/etc/gdm/custom.conf")) + "\"/run/current-system/etc/gdm/custom.conf\"")) ;; Use service-supplied path to X. (substitute* '("daemon/gdm-server.c") (("\\(X_SERVER X_SERVER_ARG_FORMAT") -- 2.14.3