diff options
author | damien <damien@mandriva.com> | 2001-04-13 13:35:58 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-04-13 13:35:58 +0000 |
commit | 441b9c3624c4587843935f44fb1e5b72cf638906 (patch) | |
tree | 9b1ee9a1eb98183901acd07fea68e3960615c7b8 /perl-install/bootlook.pm | |
parent | 8d60c4976f5b53634ac78a7df4f62adeb039f4f7 (diff) | |
download | drakx-441b9c3624c4587843935f44fb1e5b72cf638906.tar drakx-441b9c3624c4587843935f44fb1e5b72cf638906.tar.gz drakx-441b9c3624c4587843935f44fb1e5b72cf638906.tar.bz2 drakx-441b9c3624c4587843935f44fb1e5b72cf638906.tar.xz drakx-441b9c3624c4587843935f44fb1e5b72cf638906.zip |
embedded = 0 -> local
Diffstat (limited to 'perl-install/bootlook.pm')
-rw-r--r-- | perl-install/bootlook.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/bootlook.pm b/perl-install/bootlook.pm index 17d2ebb8c..63d5b8a80 100644 --- a/perl-install/bootlook.pm +++ b/perl-install/bootlook.pm @@ -408,7 +408,7 @@ sub lilo_choice $::expert=1; ask: - $::isEmbedded = 0; + local $::isEmbedded = 0; any::setupBootloader($in, $bootloader, $hds, $fstab, $ENV{SECURE_LEVEL}) or $in->exit(0); eval { bootloader::install('', $bootloader, $fstab, $hds) }; if ($@) { @@ -418,5 +418,4 @@ sub lilo_choice unlink "/tmp/.error"; goto ask; } - $::isEmbedded = 0; } |