diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/standalone/drakedm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakedm b/perl-install/standalone/drakedm index e02b46ee4..7fde7f35e 100644 --- a/perl-install/standalone/drakedm +++ b/perl-install/standalone/drakedm @@ -41,7 +41,7 @@ my %dm = ('GNOME' => [ N("GDM (GNOME Display Manager)"), '/usr/bin/gdm', 'gdm' ] ); # add non hard-wired display managers -foreach (grep { !/\.rpm/ } glob("$dm_dir/*")) { +foreach (glob("$dm_dir/*.conf")) { my %l = map { /(\S+)=(.*)/ } cat_($_); if ($l{NAME}) { $dm{$l{NAME}} ||= [ $l{DESCRIPTION}, $l{EXEC}, $l{PACKAGE} ]; |