diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-09-08 23:30:33 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-09-08 23:30:33 +0000 |
commit | 41e437726fab54cc7281426e745644177a9909af (patch) | |
tree | f3e10267cbeb726b66d74f1504325630c737299b /perl-install/install_steps_interactive.pm | |
parent | ac9bcd05a4fed48edd84d37121565d310eede77a (diff) | |
download | drakx-41e437726fab54cc7281426e745644177a9909af.tar drakx-41e437726fab54cc7281426e745644177a9909af.tar.gz drakx-41e437726fab54cc7281426e745644177a9909af.tar.bz2 drakx-41e437726fab54cc7281426e745644177a9909af.tar.xz drakx-41e437726fab54cc7281426e745644177a9909af.zip |
make loopback installs work again
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 3e61b1470..d492f08ac 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -415,7 +415,7 @@ sub formatMountPartitions { my ($part) = @_; $w ||= $o->wait_message('', _("Formatting partitions")); $w->set(isLoopback($part) ? - _("Creating and formatting file %s", $part->{device}) : + _("Creating and formatting file %s", $part->{loopback_file}) : _("Formatting partition %s", $part->{device})); }); die _("Not enough swap to fulfill installation, please add some") if availableMemory < 40 * 1024; |