diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/steps_interactive.pm | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 5d3d8d106..933719071 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,6 @@ - prefer real binaries over the lightweight perl wrappers - convert filesystem for usrmove during upgrades +- show a 'please wait' dialog while processing usrmove Version 14.48 - 22 October 2012 diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm index 61abd4f10..65962ad33 100644 --- a/perl-install/install/steps_interactive.pm +++ b/perl-install/install/steps_interactive.pm @@ -653,6 +653,12 @@ sub reallyChooseGroups { 1; } +sub beforeInstallPackages { + my ($o) = @_; + my $_w = $o->{isUpgrade} && $o->wait_message('', N("Preparing upgrade...")); + $o->SUPER::beforeInstallPackages; +} + #------------------------------------------------------------------------------ sub installPackages { my ($o) = @_; |