summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-02-12 11:26:15 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-02-12 11:26:15 +0000
commitab822df75cf6884051525b61dd3e21f2254994b4 (patch)
treeb7bdbb354bc01089ab9f410885e2d81fdb673f3f /perl-install/install_steps.pm
parent9836f3fe7d2fef5e86015234ebb223afe7ddb844 (diff)
downloaddrakx-backup-do-not-use-ab822df75cf6884051525b61dd3e21f2254994b4.tar
drakx-backup-do-not-use-ab822df75cf6884051525b61dd3e21f2254994b4.tar.gz
drakx-backup-do-not-use-ab822df75cf6884051525b61dd3e21f2254994b4.tar.bz2
drakx-backup-do-not-use-ab822df75cf6884051525b61dd3e21f2254994b4.tar.xz
drakx-backup-do-not-use-ab822df75cf6884051525b61dd3e21f2254994b4.zip
perl_checker compliance ("ref" now need parentheses in many case)
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index 0d5a2a78a..5c1c1d817 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -36,7 +36,7 @@ use fs;
sub new($$) {
my ($type, $o) = @_;
- bless $o, ref $type || $type;
+ bless $o, ref($type) || $type;
return $o;
}
@@ -63,7 +63,7 @@ sub leavingStep {
my $reachable = 1;
if (my $needs = $o->{steps}{$s}{needs}) {
- my @l = ref $needs ? @$needs : $needs;
+ my @l = ref($needs) ? @$needs : $needs;
$reachable = min(map { $o->{steps}{$_}{done} || 0 } @l);
}
$o->{steps}{$s}{reachable} = 1 if $reachable;