From 6c748484393e758f72299b075e8e6df993d23cbf Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Mon, 9 May 2005 05:38:06 +0000 Subject: fix typos --- perl-install/bootsplash.pm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'perl-install/bootsplash.pm') 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 { -- cgit v1.2.1