summaryrefslogtreecommitdiffstats
path: root/perl-install/bootsplash.pm
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.org>2005-05-09 05:38:06 +0000
committerOlivier Blin <oblin@mandriva.org>2005-05-09 05:38:06 +0000
commit6c748484393e758f72299b075e8e6df993d23cbf (patch)
tree12fb034617545d460124a4d5900d3d7a3f470622 /perl-install/bootsplash.pm
parent903f354e820d14d18909a196aab7c5d2bf12f6b5 (diff)
downloaddrakx-backup-do-not-use-6c748484393e758f72299b075e8e6df993d23cbf.tar
drakx-backup-do-not-use-6c748484393e758f72299b075e8e6df993d23cbf.tar.gz
drakx-backup-do-not-use-6c748484393e758f72299b075e8e6df993d23cbf.tar.bz2
drakx-backup-do-not-use-6c748484393e758f72299b075e8e6df993d23cbf.tar.xz
drakx-backup-do-not-use-6c748484393e758f72299b075e8e6df993d23cbf.zip
fix typos
Diffstat (limited to 'perl-install/bootsplash.pm')
-rw-r--r--perl-install/bootsplash.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/bootsplash.pm b/perl-install/bootsplash.pm
index 7b210d467..3ee4772f7 100644
--- a/perl-install/bootsplash.pm
+++ b/perl-install/bootsplash.pm
@@ -2,9 +2,9 @@ package bootsplash;
use common;
-my $themes_dir = "$::prefix/usr/share/bootsplash/themes/";
-my $themes_config_dir = "$::prefix/etc/bootsplash/themes/";
-my $sysconfig_file = '$::prefix/etc/sysconfig/bootsplash';
+my $themes_dir = "$::prefix/usr/share/bootsplash/themes";
+my $themes_config_dir = "$::prefix/etc/bootsplash/themes";
+my $sysconfig_file = "$::prefix/etc/sysconfig/bootsplash";
my $bootsplash_scripts = "$::prefix/usr/share/bootsplash/scripts";
my $default_theme = 'Mandrivalinux';
our $default_thumbnail = '/usr/share/libDrakX/pixmaps/nosplash_thumb.png';
@@ -29,12 +29,12 @@ sub themes_read_sysconfig {
sub theme_get_image_for_resolution {
my ($theme, $res) = @_;
- $themes_dir . $theme . '/images/bootsplash-' . $res . ".jpg";
+ $themes_dir . '/' . $theme . '/images/bootsplash-' . $res . ".jpg";
}
sub theme_get_config_for_resolution {
my ($theme, $res) = @_;
- $themes_config_dir . $theme . '/config/bootsplash-' . $res . ".cfg";
+ $themes_config_dir . '/' . $theme . '/config/bootsplash-' . $res . ".cfg";
}
sub theme_exists_for_resolution {