diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-08-22 01:10:13 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-08-22 01:10:13 +0000 |
commit | 1a996ceb744f490f0183099640e7a1eb3ad039c1 (patch) | |
tree | 7e599599dc2cd1601dc1f86b7db223ceebc562a9 /perl-install/install_interactive.pm | |
parent | e2df2b17c50af038bbfe15f5b6dd9a21c532ae5b (diff) | |
download | drakx-1a996ceb744f490f0183099640e7a1eb3ad039c1.tar drakx-1a996ceb744f490f0183099640e7a1eb3ad039c1.tar.gz drakx-1a996ceb744f490f0183099640e7a1eb3ad039c1.tar.bz2 drakx-1a996ceb744f490f0183099640e7a1eb3ad039c1.tar.xz drakx-1a996ceb744f490f0183099640e7a1eb3ad039c1.zip |
no_comment
Diffstat (limited to 'perl-install/install_interactive.pm')
-rw-r--r-- | perl-install/install_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_interactive.pm b/perl-install/install_interactive.pm index e7c7e625a..62cd9858c 100644 --- a/perl-install/install_interactive.pm +++ b/perl-install/install_interactive.pm @@ -29,7 +29,7 @@ sub partitionWizard { # each solution is a [ score, text, function ], where the function retunrs true if succeeded - if (fsedit::free_space(@$hds) > $min_linux and !$readonly) { + if (fsedit::free_space(grep { partition_table::can_raw_add($_) } @$hds) > $min_linux and !$readonly) { $solutions{free_space} = [ 20, _("Use free space"), sub { fsedit::auto_allocate($hds, $o->{partitions}); 1 } ] } else { push @wizlog, _("Not enough free space to allocate new partitions"); |