diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-08-26 12:53:17 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-08-26 12:53:17 +0000 |
commit | 42cdc9fae3e82c115cc0814f19b62cdc7cbcd445 (patch) | |
tree | 6ee8c5d5835c61eebeac103694a32ad3ea4948b4 | |
parent | 450d7d82c10d65d95e67936177a531a0663d6062 (diff) | |
download | drakx-42cdc9fae3e82c115cc0814f19b62cdc7cbcd445.tar drakx-42cdc9fae3e82c115cc0814f19b62cdc7cbcd445.tar.gz drakx-42cdc9fae3e82c115cc0814f19b62cdc7cbcd445.tar.bz2 drakx-42cdc9fae3e82c115cc0814f19b62cdc7cbcd445.tar.xz drakx-42cdc9fae3e82c115cc0814f19b62cdc7cbcd445.zip |
fix missing prefix when reading sysconfig bootsplash
-rw-r--r-- | perl-install/Xconfig/resolution_and_depth.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/Xconfig/resolution_and_depth.pm b/perl-install/Xconfig/resolution_and_depth.pm index b8a10695d..4842b0adc 100644 --- a/perl-install/Xconfig/resolution_and_depth.pm +++ b/perl-install/Xconfig/resolution_and_depth.pm @@ -232,7 +232,7 @@ sub set_default_background { my $ratio = $resolution->{X} / $resolution->{Y}; my $dir = "$::prefix/usr/share/mdk/backgrounds"; - my %theme = getVarsFromSh('/etc/sysconfig/bootsplash'); + my %theme = getVarsFromSh("$::prefix/etc/sysconfig/bootsplash"); my @l = sort { $a->[1] <=> $b->[1] || $b->[2] <=> $a->[2] || $a->[3] <=> $b->[3]; |