summaryrefslogtreecommitdiffstats
path: root/perl-install/install
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install')
-rw-r--r--perl-install/install/NEWS2
-rw-r--r--perl-install/install/steps.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index eed4647ac..f32ee7467 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,5 @@
+- detect KDE4 when configuring autologin
+
Version 10.42 - 26 June 2008
- fix reading rpm macros from /etc/macros.d/ (esp. %_filetriggers_dir)
diff --git a/perl-install/install/steps.pm b/perl-install/install/steps.pm
index 555fc9254..ac7566755 100644
--- a/perl-install/install/steps.pm
+++ b/perl-install/install/steps.pm
@@ -755,7 +755,7 @@ sub addUser {
if ($o->{autologin}) {
$o->{desktop} ||= first(any::sessions());
- $o->pkg_install("autologin") if !member($o->{desktop}, 'KDE', 'GNOME');
+ $o->pkg_install("autologin") if !member($o->{desktop}, 'KDE', 'KDE4', 'GNOME');
}
any::set_autologin($o->do_pkgs, $o->{autologin}, $o->{desktop});