diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-11-18 12:11:06 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-11-18 12:11:06 +0000 |
commit | 858439cfcc2ad376ec7901a64eb3e5d345373ea9 (patch) | |
tree | 62c5d41971dbd0c2050f57690532104db83841af /perl-install/install_any.pm | |
parent | d48fe059539d78c02a0eec10672fcbad8d458273 (diff) | |
download | drakx-858439cfcc2ad376ec7901a64eb3e5d345373ea9.tar drakx-858439cfcc2ad376ec7901a64eb3e5d345373ea9.tar.gz drakx-858439cfcc2ad376ec7901a64eb3e5d345373ea9.tar.bz2 drakx-858439cfcc2ad376ec7901a64eb3e5d345373ea9.tar.xz drakx-858439cfcc2ad376ec7901a64eb3e5d345373ea9.zip |
getHds called by install_steps must not be interactive
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 1773a9507..d21a6d9b9 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -948,10 +948,10 @@ sub use_root_part { } sub getHds { - my ($o, $in) = @_; + my ($o, $o_in) = @_; getHds: - my $all_hds = fsedit::get_hds($o->{partitioning}, $in); + my $all_hds = fsedit::get_hds($o->{partitioning}, $o_in); my $hds = $all_hds->{hds}; if (is_empty_array_ref($hds)) { #- no way |