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/modules.pm | |
parent | b75a57269de5acd7b0b53a82e0846f4423f7b142 (diff) | |
download | drakx-backup-do-not-use-ba595445ed4eee7a23374140b9fbb5d907fef381.tar drakx-backup-do-not-use-ba595445ed4eee7a23374140b9fbb5d907fef381.tar.gz drakx-backup-do-not-use-ba595445ed4eee7a23374140b9fbb5d907fef381.tar.bz2 drakx-backup-do-not-use-ba595445ed4eee7a23374140b9fbb5d907fef381.tar.xz drakx-backup-do-not-use-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/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 ea3eff5ac..8f50b78e1 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -308,7 +308,7 @@ sub load_raw_install { my $m = '/tmp/' . name2file($_); if (-e $m) { my $stdout; - my $rc = run_program::run(["/usr/bin/insmod_", "insmod"], '2>', \$stdout, $m, split(' ', $options->{$_})); + my $rc = run_program::run(["insmod_", "insmod"], '2>', \$stdout, $m, split(' ', $options->{$_})); log::l(chomp_($stdout)) if $stdout; if ($rc) { unlink $m; |