diff options
author | Olivier Blin <oblin@mandriva.org> | 2004-08-13 12:48:10 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2004-08-13 12:48:10 +0000 |
commit | 9c8bfb128984c5d580b5e59d1887b9e01fd3059c (patch) | |
tree | 1a8b91f455260fa8dcf00510a961237993f65221 | |
parent | a3156c9f8c3d16c43419dc7a217c8e932259c475 (diff) | |
download | drakx-9c8bfb128984c5d580b5e59d1887b9e01fd3059c.tar drakx-9c8bfb128984c5d580b5e59d1887b9e01fd3059c.tar.gz drakx-9c8bfb128984c5d580b5e59d1887b9e01fd3059c.tar.bz2 drakx-9c8bfb128984c5d580b5e59d1887b9e01fd3059c.tar.xz drakx-9c8bfb128984c5d580b5e59d1887b9e01fd3059c.zip |
perl_checker fix
-rwxr-xr-x | perl-install/standalone/drakboot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index 9ed379cdd..16c7b5094 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -288,7 +288,7 @@ sub update_bootsplash { sub change_image { my ($boot_pic, $val) = @_; - my $img_file = $themes{path} . $val . $themes{boot}{path}."bootsplash-$cur_res.jpg"; + my $img_file = $themes{path} . $val . $themes{boot}{path} . "bootsplash-$cur_res.jpg"; -f $img_file or return; my $boot_pixbuf = gtkcreate_pixbuf($img_file); $boot_pixbuf = $boot_pixbuf->scale_simple(300, 200, 'nearest'); |