diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-06-03 05:25:01 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-06-03 05:25:01 +0000 |
commit | 000bb3a58af6d150a486d10a78fbfe9f5bcf9a30 (patch) | |
tree | 68d2ee194463a442bdc9deeb697a7b250ca3889b /perl-install/any.pm | |
parent | e9588e4c1cd38f100e37173dc4e30788f18df5b2 (diff) | |
download | drakx-000bb3a58af6d150a486d10a78fbfe9f5bcf9a30.tar drakx-000bb3a58af6d150a486d10a78fbfe9f5bcf9a30.tar.gz drakx-000bb3a58af6d150a486d10a78fbfe9f5bcf9a30.tar.bz2 drakx-000bb3a58af6d150a486d10a78fbfe9f5bcf9a30.tar.xz drakx-000bb3a58af6d150a486d10a78fbfe9f5bcf9a30.zip |
get rid of the few remaining $LD_LOADER
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index e3f018641..b5fd95ec9 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -876,8 +876,8 @@ sub report_bug { join '', map { chomp; "$_\n" } header("lspci"), detect_devices::stringlist(), header("pci_devices"), cat_("/proc/bus/pci/devices"), - header("dmidecode"), `$ENV{LD_LOADER} dmidecode`, - header("fdisk"), arch() =~ /ppc/ ? `$ENV{LD_LOADER} pdisk -l` : `$ENV{LD_LOADER} fdisk -l`, + header("dmidecode"), `dmidecode`, + header("fdisk"), arch() =~ /ppc/ ? `pdisk -l` : `fdisk -l`, header("scsi"), cat_("/proc/scsi/scsi"), header("/sys/bus/scsi/devices"), `ls -l /sys/bus/scsi/devices`, header("lsmod"), cat_("/proc/modules"), |