diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-04-19 16:32:04 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-04-19 16:32:04 +0000 |
commit | d88e554c03238937161200a1e940cf05114cae20 (patch) | |
tree | e8cf7b1e4ca3510fd06c59d65f18d85d004e562f /perl-install/modules.pm | |
parent | 7ad009ba1625beb1a43f75dc527c3708b81770d1 (diff) | |
download | drakx-d88e554c03238937161200a1e940cf05114cae20.tar drakx-d88e554c03238937161200a1e940cf05114cae20.tar.gz drakx-d88e554c03238937161200a1e940cf05114cae20.tar.bz2 drakx-d88e554c03238937161200a1e940cf05114cae20.tar.xz drakx-d88e554c03238937161200a1e940cf05114cae20.zip |
no_comment
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 afb6ecce3..e8d4563b0 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -403,7 +403,7 @@ sub load_multi { my $cz = "/lib/modules.cz"; -e $cz or $cz .= "2"; run_program::run("extract_archive", $cz, "/tmp", map { "$_.o" } @l); - run_program::run(["insmod_", "insmod"], "/tmp/$_.o") and $conf{$_}{loaded} = 1 foreach @l; + run_program::run(["insmod_", "insmod"], "-f", "/tmp/$_.o") and $conf{$_}{loaded} = 1 foreach @l; unlink map { "/tmp/$_.o" } @l; } |