From 524f74462e55a86d7e9df5cc86d705f93b3cde97 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Thu, 23 Feb 2006 15:23:53 +0000 Subject: check for correct themes path --- perl-install/bootsplash.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/bootsplash.pm') 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 { -- cgit v1.2.1