From 3dfc204023a7a25db6345c11c7ff6c2c77638007 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 6 Jan 2004 16:33:20 +0000 Subject: perl_checker compliance --- perl-install/commands.pm | 5 ----- perl-install/install_any.pm | 2 +- perl-install/install_steps_interactive.pm | 8 +++++--- perl-install/partition_table/mac.pm | 2 +- 4 files changed, 7 insertions(+), 10 deletions(-) (limited to 'perl-install') diff --git a/perl-install/commands.pm b/perl-install/commands.pm index de2f23136..88735b8ea 100644 --- a/perl-install/commands.pm +++ b/perl-install/commands.pm @@ -18,11 +18,6 @@ use vars qw($printable_chars *ROUTE *DF *PS); use MDK::Common::System; use common; -#-##################################################################################### -#- Globals -#-##################################################################################### -my $BUFFER_SIZE = 1024; - #-###################################################################################### #- Functions #-###################################################################################### diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 28810502b..cbffc10d9 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -131,7 +131,7 @@ sub getFile { #- to other to avoid media change... my $f2 = "$postinstall_rpms/$f"; $f2 = "/tmp/image/$rel" if !$postinstall_rpms || !-e $f2; - my $F; open $F, $f2 and $F; + my $F; open($F, $f2) && $F; } } || errorOpeningFile($f); } diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index d1ae7ab65..8bb5cae52 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -752,7 +752,8 @@ sub installUpdates { $o->hasNetwork or return; - is_empty_hash_ref($u) and $o->ask_yesorno_({ messages => formatAlaTeX( + if (is_empty_hash_ref($u)) { + $o->ask_yesorno_({ messages => formatAlaTeX( N("You now have the opportunity to download updated packages. These packages have been updated after the distribution was released. They may contain security or bug fixes. @@ -761,8 +762,9 @@ To download these packages, you will need to have a working Internet connection. Do you want to install the updates ?")), - interactive_help_id => 'installUpdates', - }) || return; + interactive_help_id => 'installUpdates', + }) or return; + } #- bring all interface up for installing crypto packages. install_interactive::upNetwork($o); diff --git a/perl-install/partition_table/mac.pm b/perl-install/partition_table/mac.pm index 26a7bc7a5..2a8fe8df5 100644 --- a/perl-install/partition_table/mac.pm +++ b/perl-install/partition_table/mac.pm @@ -11,7 +11,7 @@ use partition_table::raw; use partition_table; use c; -my %typeToDos = ( +my %_typeToDos = ( "Apple_partition_map" => 0x401, "Apple_Bootstrap" => 0x401, "Apple_Driver43" => 0x401, -- cgit v1.2.1