summaryrefslogtreecommitdiffstats
path: root/perl-install/Xconfig
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-08-26 12:53:17 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-08-26 12:53:17 +0000
commit42cdc9fae3e82c115cc0814f19b62cdc7cbcd445 (patch)
tree6ee8c5d5835c61eebeac103694a32ad3ea4948b4 /perl-install/Xconfig
parent450d7d82c10d65d95e67936177a531a0663d6062 (diff)
downloaddrakx-backup-do-not-use-42cdc9fae3e82c115cc0814f19b62cdc7cbcd445.tar
drakx-backup-do-not-use-42cdc9fae3e82c115cc0814f19b62cdc7cbcd445.tar.gz
drakx-backup-do-not-use-42cdc9fae3e82c115cc0814f19b62cdc7cbcd445.tar.bz2
drakx-backup-do-not-use-42cdc9fae3e82c115cc0814f19b62cdc7cbcd445.tar.xz
drakx-backup-do-not-use-42cdc9fae3e82c115cc0814f19b62cdc7cbcd445.zip
fix missing prefix when reading sysconfig bootsplash
Diffstat (limited to 'perl-install/Xconfig')
-rw-r--r--perl-install/Xconfig/resolution_and_depth.pm2
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];