]> rtime.felk.cvut.cz Git - sojka/debian/lightdm.git/commitdiff
stop shippig unused patch
authorcorsac <corsac@0c9b3bff-18ee-0310-b944-d1aa2700132f>
Sun, 2 Sep 2012 13:36:20 +0000 (13:36 +0000)
committercorsac <corsac@0c9b3bff-18ee-0310-b944-d1aa2700132f>
Sun, 2 Sep 2012 13:36:20 +0000 (13:36 +0000)
git-svn-id: svn://anonscm.debian.org/pkg-xfce/goodies/trunk/lightdm@7150 0c9b3bff-18ee-0310-b944-d1aa2700132f

debian/patches/05_dont-add-pkglibexecdir-path.patch [deleted file]

diff --git a/debian/patches/05_dont-add-pkglibexecdir-path.patch b/debian/patches/05_dont-add-pkglibexecdir-path.patch
deleted file mode 100644 (file)
index 6942ccf..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-Author: Yves-Alexis Perez <corsac@debian.org>
-Description: don't add PKGLIBEXEC_DIR to the user PATH
-Index: lightdm-1.1.1/src/session.c
-===================================================================
---- lightdm-1.1.1.orig/src/session.c
-+++ lightdm-1.1.1/src/session.c
-@@ -217,26 +217,6 @@
-     }
- }
--/* Insert our own utility directory to PATH
-- * This is to provide gdmflexiserver which provides backwards compatibility
-- * with GDM.
-- * Must be done after set_env_from_authentication because PAM sets PATH.
-- * This can be removed when this is no longer required.
-- */
--static void
--insert_utility_path (Session *session)
--{
--    const gchar *orig_path;
--
--    orig_path = session_get_env (session, "PATH");
--    if (orig_path)
--    {
--        gchar *path = g_strdup_printf ("%s:%s", PKGLIBEXEC_DIR, orig_path);
--        session_set_env (session, "PATH", path);
--        g_free (path);
--    }
--}
--
- gboolean
- session_start (Session *session)
- {
-@@ -438,7 +418,6 @@
-     pam_session_setup (session->priv->authentication);
-     set_env_from_authentication (session, session->priv->authentication);
-     set_locale (session);
--    insert_utility_path (session);
-     PROCESS_CLASS (session_parent_class)->run (process);
- }