summaryrefslogtreecommitdiffstats
path: root/perl-install/commands.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-02-22 14:23:04 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-02-22 14:23:04 +0000
commit7773a22aa8714be44278c069a64dafe75e0a08f9 (patch)
tree2482a24abc7cf44aeb778dddfe7a951b49a7e71e /perl-install/commands.pm
parent6ef9708ef633c12d9702e8b31e579e1cf5dd02b1 (diff)
downloaddrakx-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.pm2
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;
}