diff options
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 198bc118f..d4e2bcddd 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -423,7 +423,7 @@ sub unload($;$) { sub load_raw { my @l = map { my ($i, @i) = @$_; [ $i, \@i ] } @_; - my $cz = "/lib/modules.cz"; -e $cz or $cz .= "2"; + my $cz = "/lib/modules" . (arch() eq 'sparc64' && "64") . ".cz"; -e $cz or $cz .= "2"; run_program::run("extract_archive", $cz, "/tmp", map { "$_->[0].o" } @l); my @failed = grep { my $m = "/tmp/$_->[0].o"; |