diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-10-23 15:40:16 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-10-23 15:40:16 +0000 |
commit | 64a16a8f78ae8828eb723b587ee291c47e005ff0 (patch) | |
tree | 9c247e0ed571dfe168f2dfdc4cef57ecbecda0ce /perl-install/install_interactive.pm | |
parent | a34d347ff739c2c3a275588eea355eac8fe502c9 (diff) | |
download | drakx-64a16a8f78ae8828eb723b587ee291c47e005ff0.tar drakx-64a16a8f78ae8828eb723b587ee291c47e005ff0.tar.gz drakx-64a16a8f78ae8828eb723b587ee291c47e005ff0.tar.bz2 drakx-64a16a8f78ae8828eb723b587ee291c47e005ff0.tar.xz drakx-64a16a8f78ae8828eb723b587ee291c47e005ff0.zip |
(partitionWizardSolutions): add "require resize_fat::main" as it should be
Diffstat (limited to 'perl-install/install_interactive.pm')
-rw-r--r-- | perl-install/install_interactive.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/install_interactive.pm b/perl-install/install_interactive.pm index 9746cf339..bb61e6392 100644 --- a/perl-install/install_interactive.pm +++ b/perl-install/install_interactive.pm @@ -105,6 +105,7 @@ sub partitionWizardSolutions { my $part = $o->ask_from_listf('', _("Which partition do you want to resize?"), \&partition_table_raw::description, \@ok_forloopback) or return; $o->set_help('resizeFATWait'); my $w = $o->wait_message(_("Resizing"), _("Computing Windows filesystem bounds")); + require resize_fat::main; my $resize_fat = eval { resize_fat::main->new($part->{device}, devices::make($part->{device})) }; $@ and die _("The FAT resizer is unable to handle your partition, the following error occured: %s", $@); |