diff options
-rw-r--r-- | mandrake_desk.spec | 5 | ||||
-rwxr-xr-x | sbin/fndSession | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/mandrake_desk.spec b/mandrake_desk.spec index 27b350f..b349a9f 100644 --- a/mandrake_desk.spec +++ b/mandrake_desk.spec @@ -1,7 +1,7 @@ Summary: The Desktop configuration files for Mandrake Linux Name: mandrake_desk Version: 9.2 -Release: 3mdk +Release: 4mdk License: GPL URL: http://www.mandrakelinux.com/ Group: System/Configuration/Other @@ -169,6 +169,9 @@ rm -fr %buildroot %changelog +* Wed Aug 27 2003 Frederic Crozat <fcrozat@mandrakesoft.com> 9.2-4mdk +- Fix fndSession to look for new gdm session path (fix bug #4572) + * Tue Aug 26 2003 Frederic Crozat <fcrozat@mandrakesoft.com> 9.2-3mdk - New background infrastructure (dadou) - Rewritten chksession program and manpage, thanks to Bernard Lang diff --git a/sbin/fndSession b/sbin/fndSession index a743bc0..68251c2 100755 --- a/sbin/fndSession +++ b/sbin/fndSession @@ -13,6 +13,6 @@ LIST="`/usr/sbin/chksession -k`" perl -pi -e 's|^SessionTypes=.*|$ENV{LIST}|'\ /usr/share/config/kdm/kdmrc fi -if [ -d /etc/X11/gdm/Sessions ];then +if [ -d /etc/X11/dm/Sessions ];then /usr/sbin/chksession -g fi |