diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-09-30 16:08:55 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-09-30 16:08:55 +0000 |
commit | 84494e4bb355650315ba1e2b484715144d91d929 (patch) | |
tree | cefd85e819d2bb22ab430e1dbae1c523c0f6398b /lib/MDV/Draklive/Initrd.pm | |
parent | 17ed8bcddceaaf7010f2a5774150d4c627944546 (diff) | |
download | drakiso-84494e4bb355650315ba1e2b484715144d91d929.tar drakiso-84494e4bb355650315ba1e2b484715144d91d929.tar.gz drakiso-84494e4bb355650315ba1e2b484715144d91d929.tar.bz2 drakiso-84494e4bb355650315ba1e2b484715144d91d929.tar.xz drakiso-84494e4bb355650315ba1e2b484715144d91d929.zip |
forgot to initialize one variable in plymouth handling code
Diffstat (limited to 'lib/MDV/Draklive/Initrd.pm')
-rw-r--r-- | lib/MDV/Draklive/Initrd.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/MDV/Draklive/Initrd.pm b/lib/MDV/Draklive/Initrd.pm index 5b0f5ed..474f244 100644 --- a/lib/MDV/Draklive/Initrd.pm +++ b/lib/MDV/Draklive/Initrd.pm @@ -276,6 +276,7 @@ sub add_splash { my ($live, $initrd_tree) = @_; if ($live->{system}{vga_mode} && $live->{system}{splash} ne 'no') { my $root = $live->get_system_root(); + my $lib_prefix = $live->get_lib_prefix(); my $plymouth_theme_name = basename(dirname(expand_symlinks($root . "/usr/share/plymouth/themes/default.plymouth"))); my $plymouth_theme_path = "/usr/share/plymouth/themes/" . $plymouth_theme_name; |