diff options
Diffstat (limited to 'perl-install')
-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 44b119ed9..fcad326db 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -312,7 +312,7 @@ sub load_raw_install { my $m = '/tmp/' . $_ . module_extension(); if (-e $m) { my $stdout; - my $rc = run_program::run('insmod', '2>', \$stdout, $m, split(' ', $options->{$_})); + my $rc = run_program::run('/sbin/insmod', '2>', \$stdout, $m, split(' ', $options->{$_})); log::l(chomp_($stdout)) if $stdout; if ($rc) { unlink $m; |