summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2002-07-11 15:16:21 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2002-07-11 15:16:21 +0000
commit42fc444780c98806fa76ec31013b26580564e668 (patch)
treed199ddb8cd76745e40d9512ae02cdfa995030d0b /perl-install
parent8ac9881c8786508687fceb47594860f9fd742659 (diff)
downloaddrakx-backup-do-not-use-42fc444780c98806fa76ec31013b26580564e668.tar
drakx-backup-do-not-use-42fc444780c98806fa76ec31013b26580564e668.tar.gz
drakx-backup-do-not-use-42fc444780c98806fa76ec31013b26580564e668.tar.bz2
drakx-backup-do-not-use-42fc444780c98806fa76ec31013b26580564e668.tar.xz
drakx-backup-do-not-use-42fc444780c98806fa76ec31013b26580564e668.zip
fix the detection of the fscking mac ps/2 mouse ("Mouse:USB|1 button: Apple Computer|iMac Mouse [Human Interface Devices|Boot Interface Subclass|Mouse]")
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/mouse.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/mouse.pm b/perl-install/mouse.pm
index d6cdec3c1..2caacff2b 100644
--- a/perl-install/mouse.pm
+++ b/perl-install/mouse.pm
@@ -176,7 +176,7 @@ sub fullname2mouse {
my $l = raw2mouse($type, $_);
$name eq $l->{name} and return { %$l, %opts };
}
- if ($name eq '1 Button') {
+ if ($name eq '1 Button' || $name eq '1 button') {
$name = "Generic 2 Button Mouse";
goto search;
}