diff options
author | Olivier Blin <oblin@mandriva.org> | 2006-02-23 15:23:53 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2006-02-23 15:23:53 +0000 |
commit | 524f74462e55a86d7e9df5cc86d705f93b3cde97 (patch) | |
tree | d3b5683b5a17bfb19519dfca39ed3ce04313ba34 /perl-install | |
parent | c2d454ea5217af1fc3071739bd1a95bf1cab864d (diff) | |
download | drakx-backup-do-not-use-524f74462e55a86d7e9df5cc86d705f93b3cde97.tar drakx-backup-do-not-use-524f74462e55a86d7e9df5cc86d705f93b3cde97.tar.gz drakx-backup-do-not-use-524f74462e55a86d7e9df5cc86d705f93b3cde97.tar.bz2 drakx-backup-do-not-use-524f74462e55a86d7e9df5cc86d705f93b3cde97.tar.xz drakx-backup-do-not-use-524f74462e55a86d7e9df5cc86d705f93b3cde97.zip |
check for correct themes path
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 196e38fab..e657f6bf3 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 $_ } sort(all($::prefix . $themes_dir)); + grep { !/^\./ && -d $::prefix . $themes_dir . '/' . $_ } sort(all($::prefix . $themes_dir)); } sub themes_list_for_resolution { |