diff options
author | Olivier Blin <oblin@mandriva.com> | 2009-10-09 16:26:12 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2009-10-09 16:26:12 +0000 |
commit | cfc6afe6d714a0adf5fdc0d3009207c0383eee7d (patch) | |
tree | 910fdf7ba58d2419198e1ab93be3beac0819b57b | |
parent | 69ca8a627b7353fb64cf23833aedaceb414680fe (diff) | |
download | drakx-cfc6afe6d714a0adf5fdc0d3009207c0383eee7d.tar drakx-cfc6afe6d714a0adf5fdc0d3009207c0383eee7d.tar.gz drakx-cfc6afe6d714a0adf5fdc0d3009207c0383eee7d.tar.bz2 drakx-cfc6afe6d714a0adf5fdc0d3009207c0383eee7d.tar.xz drakx-cfc6afe6d714a0adf5fdc0d3009207c0383eee7d.zip |
fix syntax error
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 98e3c0d56..feabbb7f0 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -654,7 +654,7 @@ sub get_autologin() { my $dm = lc($desktop{DISPLAYMANAGER}) || $desktop_to_dm{$desktop} || - basename(chomp_(run_program::rooted_get_stdout($::prefix, "/etc/X11/lookupdm")); + basename(chomp_(run_program::rooted_get_stdout($::prefix, "/etc/X11/lookupdm"))); $dm = $dm_canonical{$dm} if exists $dm_canonical{$dm}; my $autologin_user; |