diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-09-27 17:37:22 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-09-27 17:37:22 +0000 |
commit | 565382c10ff0a56b7c745429d4f9d95668827ff4 (patch) | |
tree | a6d9531b5301caa3c1f1147a056ea7a9447cb334 /perl-install | |
parent | 077a3aeefb57b5c9e640c9d2eb526434ff0c9369 (diff) | |
download | drakx-565382c10ff0a56b7c745429d4f9d95668827ff4.tar drakx-565382c10ff0a56b7c745429d4f9d95668827ff4.tar.gz drakx-565382c10ff0a56b7c745429d4f9d95668827ff4.tar.bz2 drakx-565382c10ff0a56b7c745429d4f9d95668827ff4.tar.xz drakx-565382c10ff0a56b7c745429d4f9d95668827ff4.zip |
(main) do not stop bootsplash on globetrotter
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install2.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index b0b6d2f29..b55d0b3d7 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -607,7 +607,7 @@ sub main { } $::o = $o = $o_; - eval { output('/proc/splash', "verbose\n") }; + eval { output('/proc/splash', "verbose\n") } if !$::globetrotter; #-the main cycle MAIN: for ($o->{step} = $o->{steps}{first};; $o->{step} = getNextStep($o)) { |