diff options
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; } |