From ab822df75cf6884051525b61dd3e21f2254994b4 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 12 Feb 2003 11:26:15 +0000 Subject: perl_checker compliance ("ref" now need parentheses in many case) --- perl-install/modules.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/modules.pm') diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 764575341..b852c7e8e 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -28,7 +28,7 @@ sub load { #- keeping the order of modules my %options; my @l = map { - my ($name, @options) = ref $_ ? @$_ : $_; + my ($name, @options) = ref($_) ? @$_ : $_; $options{$name} = \@options; dependencies_closure($name); } @_; -- cgit v1.2.1