summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2002-10-16 14:22:05 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2002-10-16 14:22:05 +0000
commitfd48e5133a7502afe544da4f44da7a5efa8da5b0 (patch)
treec05a5394cd64de4e4e6d336b02dbd9fa117269c0 /perl-install
parent58a66fcc05bce9e2d71706b07d832c69ee5764fd (diff)
downloaddrakx-backup-do-not-use-fd48e5133a7502afe544da4f44da7a5efa8da5b0.tar
drakx-backup-do-not-use-fd48e5133a7502afe544da4f44da7a5efa8da5b0.tar.gz
drakx-backup-do-not-use-fd48e5133a7502afe544da4f44da7a5efa8da5b0.tar.bz2
drakx-backup-do-not-use-fd48e5133a7502afe544da4f44da7a5efa8da5b0.tar.xz
drakx-backup-do-not-use-fd48e5133a7502afe544da4f44da7a5efa8da5b0.zip
display cpu name (eg "Pentium") too in harddrake gui
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/harddrake/data.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm
index d7c5befff..bcc294d17 100644
--- a/perl-install/harddrake/data.pm
+++ b/perl-install/harddrake/data.pm
@@ -75,7 +75,7 @@ sub custom_id {
my ($device, $str) = @_;
defined($device->{device}) ? $device->{device} :
(defined($device->{processor}) ?
- "$device->{vendor_id} " . _("cpu number ") . $device->{processor} :
+ "$device->{vendor_id} $device->{name} " . _("cpu number ") . $device->{processor} :
(defined($device->{description}) ? $device->{description} : $str));
}