diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | mandrake_desk.spec | 6 | ||||
-rw-r--r-- | sbin/chksession | 2 |
3 files changed, 9 insertions, 2 deletions
@@ -1,5 +1,8 @@ 2000-07-18 Chmouel Boudjnah <chmouel@mandrakesoft.com> + * sbin/chksession: Set support for KDE2 by default when generating + session. + * bin/DrakWM: Add -i options to launch with xinit. add -a option to provide alias for bash. diff --git a/mandrake_desk.spec b/mandrake_desk.spec index f9af317..95b9512 100644 --- a/mandrake_desk.spec +++ b/mandrake_desk.spec @@ -1,6 +1,6 @@ %define name mandrake_desk %define version 1.0.4 -%define release 3mdk +%define release 4mdk Summary: The Desktop configuration files for Linux Mandrake Name: %{name} @@ -60,6 +60,10 @@ rm -rf $RPM_BUILD_ROOT /usr/man/*/* %changelog +* Tue Jul 18 2000 Chmouel Boudjnah <chmouel@mandrakesoft.com> 1.0.4-4mdk +- sbin/chksession: Set support for KDE2 by default when generating + session. + * Tue Jul 18 2000 Chmouel Boudjnah <chmouel@mandrakesoft.com> 1.0.4-3mdk - Remove /etc/X11/window-managers - bin/DrakWM: diff --git a/sbin/chksession b/sbin/chksession index c21b034..2afe61c 100644 --- a/sbin/chksession +++ b/sbin/chksession @@ -80,7 +80,7 @@ my ($e) = cat("/etc/sysconfig/desktop") =~ /(\S+)/; if ($kdm) { $session="SessionTypes="; - for(@lf) { $session .= /$lf[-1]/ ? "$_;failsafe;default" : "$_;" } + for(@lf) { $session .= /$lf[-1]/ ? "$_,failsafe,default" : "$_," } print "$session\n"; exit(0); } |