diff options
author | Francois Pons <fpons@mandriva.com> | 2000-05-22 20:57:51 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2000-05-22 20:57:51 +0000 |
commit | c15afb4a54dd6003ed89efaf6d42ef2db7eb887f (patch) | |
tree | c56ca90952b5e6499f897d11f73657d7cfc7a55c /perl-install/modules.pm | |
parent | 58d2d2741ce5d150377e92b36d3ea5aaec97eb90 (diff) | |
download | drakx-c15afb4a54dd6003ed89efaf6d42ef2db7eb887f.tar drakx-c15afb4a54dd6003ed89efaf6d42ef2db7eb887f.tar.gz drakx-c15afb4a54dd6003ed89efaf6d42ef2db7eb887f.tar.bz2 drakx-c15afb4a54dd6003ed89efaf6d42ef2db7eb887f.tar.xz drakx-c15afb4a54dd6003ed89efaf6d42ef2db7eb887f.zip |
*** empty log message ***
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"; |