Remove check for hardcoded Xwayland path in gdm. diff --git a/daemon/gdm-local-display-factory.c b/daemon/gdm-local-display-factory.c index 7de7b99c..065325f4 100644 --- a/daemon/gdm-local-display-factory.c +++ b/daemon/gdm-local-display-factory.c @@ -245,9 +245,9 @@ struct GdmDisplayServerConfiguration { const char *session_type; } display_server_configuration[] = { #ifdef ENABLE_WAYLAND_SUPPORT - { "wayland", GDM_KEY_WAYLAND_ENABLE, "/usr/bin/Xwayland", "wayland" }, + { "wayland", GDM_KEY_WAYLAND_ENABLE, "", "wayland" }, #endif - { "xorg", GDM_KEY_XORG_ENABLE, "/usr/bin/Xorg", "x11" }, + { "xorg", GDM_KEY_XORG_ENABLE, "", "x11" }, { NULL, NULL, NULL }, }; @@ -269,9 +269,6 @@ display_server_enabled (GdmLocalDisplayFactory *factory, if (!gdm_settings_direct_get_boolean (key, &enabled) || !enabled) return FALSE; - if (!g_file_test (binary, G_FILE_TEST_IS_EXECUTABLE)) - return FALSE; - return TRUE; } efs/?id=ef0a45c6413a35e0e7ee375cab2c6f7bc468ab5a'>refslogtreecommitdiff
path: root/gnu/packages/zile.scm
AgeCommit message (Expand)Author
2021-12-13gnu: Simplify package inputs....This commit was obtained by running: ./pre-inst-env guix style without any additional argument. Ludovic Courtès
2021-07-08gnu: zile-on-guile: Fix build....This is a follow-up of da40d07066096a3b5a852041ea01fbb32240deda. * gnu/packages/zile.scm (zile-on-guile)[arguments]: Restore the original patch-/bin/sh phase. Mathieu Othacehe
2021-07-08gnu: zile: Update to 2.6.2....* gnu/packages/zile.scm (zile): Update to 2.6.2. [arguments]: Adjust file list in custom 'patch-/bin/sh phase. [inputs]: Add gee and glib. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Matthew James Kraai