diff options
author | Olivier Blin <oblin@mandriva.org> | 2006-02-23 15:08:41 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2006-02-23 15:08:41 +0000 |
commit | a03645c3a8659935cc9126fd340515af4cc3a0be (patch) | |
tree | 5b46c56a12e95178771c136d7fd4bb474cfa969d /perl-install | |
parent | 7cc9746033dd6d5bed15ff6130ba69ed42939d86 (diff) | |
download | drakx-a03645c3a8659935cc9126fd340515af4cc3a0be.tar drakx-a03645c3a8659935cc9126fd340515af4cc3a0be.tar.gz drakx-a03645c3a8659935cc9126fd340515af4cc3a0be.tar.bz2 drakx-a03645c3a8659935cc9126fd340515af4cc3a0be.tar.xz drakx-a03645c3a8659935cc9126fd340515af4cc3a0be.zip |
fix typo
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/bootsplash.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/bootsplash.pm b/perl-install/bootsplash.pm index b80947b64..f302a94b6 100644 --- a/perl-install/bootsplash.pm +++ b/perl-install/bootsplash.pm @@ -60,7 +60,7 @@ sub theme_exists_for_resolution { } sub themes_list() { - grep { !/^\./ && -d $themes_dir } sort(all($themes_dir)); + grep { !/^\./ && -d $_ } sort(all($themes_dir)); } sub themes_list_for_resolution { |