diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-05-20 05:40:00 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-05-20 05:40:00 +0000 |
commit | ba595445ed4eee7a23374140b9fbb5d907fef381 (patch) | |
tree | ab5c0aa488ad1323abe53b359823d44a3711910f /perl-install/commands.pm | |
parent | b75a57269de5acd7b0b53a82e0846f4423f7b142 (diff) | |
download | drakx-ba595445ed4eee7a23374140b9fbb5d907fef381.tar drakx-ba595445ed4eee7a23374140b9fbb5d907fef381.tar.gz drakx-ba595445ed4eee7a23374140b9fbb5d907fef381.tar.bz2 drakx-ba595445ed4eee7a23374140b9fbb5d907fef381.tar.xz drakx-ba595445ed4eee7a23374140b9fbb5d907fef381.zip |
keep binaries in their "standard" binary dir instead of moving everything to /usr/bin
(it used to be in /usr/bin when the stage1 was not exited)
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 2f2727047..43dcbeca6 100644 --- a/perl-install/commands.pm +++ b/perl-install/commands.pm @@ -348,7 +348,7 @@ sub insmod { if (! -r $f) { die "can not find module $f\n"; } - run_program::run(["/usr/bin/insmod_", "insmod"], "-f", $f, @_) or die("insmod $f failed"); + run_program::run(["insmod_", "insmod"], "-f", $f, @_) or die("insmod $f failed"); unlink $f; } |