diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-02-22 14:23:04 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-02-22 14:23:04 +0000 |
commit | 7773a22aa8714be44278c069a64dafe75e0a08f9 (patch) | |
tree | 2482a24abc7cf44aeb778dddfe7a951b49a7e71e /perl-install/commands.pm | |
parent | 6ef9708ef633c12d9702e8b31e579e1cf5dd02b1 (diff) | |
download | drakx-backup-do-not-use-7773a22aa8714be44278c069a64dafe75e0a08f9.tar drakx-backup-do-not-use-7773a22aa8714be44278c069a64dafe75e0a08f9.tar.gz drakx-backup-do-not-use-7773a22aa8714be44278c069a64dafe75e0a08f9.tar.bz2 drakx-backup-do-not-use-7773a22aa8714be44278c069a64dafe75e0a08f9.tar.xz drakx-backup-do-not-use-7773a22aa8714be44278c069a64dafe75e0a08f9.zip |
call /usr/bin/insmod_ with full path
Diffstat (limited to 'perl-install/commands.pm')
-rw-r--r-- | perl-install/commands.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/commands.pm b/perl-install/commands.pm index 0be485ec1..37f672659 100644 --- a/perl-install/commands.pm +++ b/perl-install/commands.pm @@ -441,7 +441,7 @@ sub insmod { } } -r $f or die "can't find module $_"; - run_program::run(["insmod_", "insmod"], "-f", $f, @_) or die("insmod $_ failed"); + run_program::run(["/usr/bin/insmod_", "insmod"], "-f", $f, @_) or die("insmod $_ failed"); unlink $f; } |