guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch wip-desktop updated: gnu: gdm: Fix elogind.


From: guix-commits
Subject: branch wip-desktop updated: gnu: gdm: Fix elogind.
Date: Sun, 16 Aug 2020 04:26:01 -0400

This is an automated email from the git hooks/post-receive script.

dannym pushed a commit to branch wip-desktop
in repository guix.

The following commit(s) were added to refs/heads/wip-desktop by this push:
     new d4dbd51  gnu: gdm: Fix elogind.
d4dbd51 is described below

commit d4dbd512ff69536ba36e2e840b3f43cae044b20f
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Sun Aug 16 00:39:14 2020 -0400

    gnu: gdm: Fix elogind.
    
    * gnu/packages/gnome.scm (gdm): Fix elogind.
    [arguments]<#:phases>['pre-configure]: Modify phase.
    
    Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
 gnu/packages/gnome.scm | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index ca1f438..a73f4c4 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -9463,21 +9463,18 @@ libxml2.")
        (modify-phases %standard-phases
          (add-before 'configure 'pre-configure
            (lambda* (#:key inputs outputs #:allow-other-keys)
-             ;; We don't have <systemd/sd-daemon.h>.
              (substitute* '("common/gdm-log.c"
                             "daemon/gdm-server.c"
                             "daemon/gdm-session-worker.c"
                             "daemon/gdm-session-worker-job.c")
                (("#include <systemd/sd-daemon\\.h>")
-                ""))
-             ;; Use elogind for sd-login.
+                "#include <elogind/sd-daemon.h>"))
              (substitute* '("common/gdm-common.c"
                             "daemon/gdm-local-display-factory.c"
                             "daemon/gdm-manager.c"
                             "libgdm/gdm-user-switching.c")
                (("#include <systemd/sd-login\\.h>")
                 "#include <elogind/sd-login.h>"))
-             ;; Check for elogind.
              (substitute* '("configure")
                (("libsystemd")
                 "libelogind"))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]