diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-05-09 05:38:06 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-05-09 05:38:06 +0000 |
commit | 6c748484393e758f72299b075e8e6df993d23cbf (patch) | |
tree | 12fb034617545d460124a4d5900d3d7a3f470622 | |
parent | 903f354e820d14d18909a196aab7c5d2bf12f6b5 (diff) | |
download | drakx-6c748484393e758f72299b075e8e6df993d23cbf.tar drakx-6c748484393e758f72299b075e8e6df993d23cbf.tar.gz drakx-6c748484393e758f72299b075e8e6df993d23cbf.tar.bz2 drakx-6c748484393e758f72299b075e8e6df993d23cbf.tar.xz drakx-6c748484393e758f72299b075e8e6df993d23cbf.zip |
fix typos
-rw-r--r-- | perl-install/bootsplash.pm | 10 |
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 { |