diff options
author | Raghav Gururajan <raghavgururajan@disroot.org> | 2020-09-07 06:58:32 -0400 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2020-09-07 13:53:59 +0200 |
commit | 1349564dae59c5d5d7480efe785f11798631986b (patch) | |
tree | d932cb5edfefc86007a43fff375dea6b088ae713 | |
parent | 3326cca406edca874993b71d71cc01dbf49087c8 (diff) | |
download | guix-1349564dae59c5d5d7480efe785f11798631986b.tar.gz |
gnu: gdm: Remove obsolete pre-configuration.
* gnu/packages/gnome.scm (gdm) [arguments]<#:phases>['pre-configure]: Modify. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
-rw-r--r-- | gnu/packages/gnome.scm | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 446883c777..a1b8b27c60 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -9436,19 +9436,6 @@ libxml2.") (add-before 'configure 'pre-configure (lambda* (#:key inputs outputs #:allow-other-keys) ;; Replace systemd with elogind. - (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>") - "#include <elogind/sd-daemon.h>")) - ;; Replace systemd with elogind. - (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>")) (substitute* '("configure") (("libsystemd") "libelogind")) |