diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-03-30 23:25:44 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-03-30 23:25:44 +0000 |
commit | 75bcbea29b0dba1954344cc78b9ecb75e5007bfa (patch) | |
tree | 83d0669e2cdcb66caceb134e88f05179c99a6b55 /perl-install/install_steps.pm | |
parent | 0ed09587c155ff3297d723d038a9e3016d1d599e (diff) | |
download | drakx-75bcbea29b0dba1954344cc78b9ecb75e5007bfa.tar drakx-75bcbea29b0dba1954344cc78b9ecb75e5007bfa.tar.gz drakx-75bcbea29b0dba1954344cc78b9ecb75e5007bfa.tar.bz2 drakx-75bcbea29b0dba1954344cc78b9ecb75e5007bfa.tar.xz drakx-75bcbea29b0dba1954344cc78b9ecb75e5007bfa.zip |
no_comment
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 1108398a5..b22e8869a 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -682,7 +682,7 @@ sub setupBootloader($) { eval { lilo::install($o->{prefix}, $o->{bootloader}, $o->{fstab}) }; my $err = $@; eval { lilo::install_grub($o->{prefix}, $o->{bootloader}, $o->{fstab}, $o->{hds}) }; - die $err if $@; + die $err if $@ && $err; } } |