diff options
author | Chmouel Boudjnah <chmouel@mandriva.org> | 2000-07-18 21:31:16 +0000 |
---|---|---|
committer | Chmouel Boudjnah <chmouel@mandriva.org> | 2000-07-18 21:31:16 +0000 |
commit | 8ee103f2d6f398050ee2e9430ca7523a769ff081 (patch) | |
tree | 4cf93a9cc1dc2ab4f9ec3cba367801e4ba4ff5e9 | |
parent | 407a7609b7335533658bc244d9fb6a4e48afbebd (diff) | |
download | common-data-8ee103f2d6f398050ee2e9430ca7523a769ff081.tar common-data-8ee103f2d6f398050ee2e9430ca7523a769ff081.tar.gz common-data-8ee103f2d6f398050ee2e9430ca7523a769ff081.tar.bz2 common-data-8ee103f2d6f398050ee2e9430ca7523a769ff081.tar.xz common-data-8ee103f2d6f398050ee2e9430ca7523a769ff081.zip |
* sbin/chksession: Set support for KDE2 by default when generating
session.
-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); } |