summaryrefslogtreecommitdiffstats
path: root/perl-install/install_any.pm
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2001-03-14 17:13:12 +0000
committerFrancois Pons <fpons@mandriva.com>2001-03-14 17:13:12 +0000
commit90e4f82561eca36664770b44f1792a7cea4353c0 (patch)
tree7fb0442d1f3861c7b83c023b7fcfdc89680f6607 /perl-install/install_any.pm
parent3c54572bcc95094cfae999bf6c42a84fbdc13b72 (diff)
downloaddrakx-backup-do-not-use-90e4f82561eca36664770b44f1792a7cea4353c0.tar
drakx-backup-do-not-use-90e4f82561eca36664770b44f1792a7cea4353c0.tar.gz
drakx-backup-do-not-use-90e4f82561eca36664770b44f1792a7cea4353c0.tar.bz2
drakx-backup-do-not-use-90e4f82561eca36664770b44f1792a7cea4353c0.tar.xz
drakx-backup-do-not-use-90e4f82561eca36664770b44f1792a7cea4353c0.zip
use LD_LOADER when invoking parshedlist.
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r--perl-install/install_any.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm
index 084e59bd3..d12523340 100644
--- a/perl-install/install_any.pm
+++ b/perl-install/install_any.pm
@@ -442,7 +442,7 @@ sub install_urpmi {
http => $ENV{URLPREFIX},
cdrom => "removable_cdrom_$::i://mnt/cdrom" }}{$method} . "/$_->{rpmsdir}";
- local *FILES; open FILES, "parsehdlist /tmp/$_->{hdlist} |";
+ local *FILES; open FILES, "$ENV{LD_LOADER} parsehdlist /tmp/$_->{hdlist} |";
chop, print LIST "$dir/$_\n" foreach <FILES>;
close FILES or log::l("parsehdlist failed"), return;
close LIST;