diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rwxr-xr-x | perl-install/standalone/drakedm | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index f1be2272a..f4cc11231 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- drakedm: + o do not try to configure an undefined dm + Version 10.47 - 10 July 2008 - fix reading and setting kdmrc (by resolving alternative in chroot) diff --git a/perl-install/standalone/drakedm b/perl-install/standalone/drakedm index 36c8200d6..259bb637b 100755 --- a/perl-install/standalone/drakedm +++ b/perl-install/standalone/drakedm @@ -65,6 +65,7 @@ several different X sessions on your local machine at the same time.")), } ] ) + && $dm ) { $in->do_pkgs->ensure_is_installed($dm->{PACKAGE}, $dm->{EXEC}) or goto start; addVarsInSh($cfg_file, { DISPLAYMANAGER => $dm->{NAME} }); |