diff options
author | Francois Pons <fpons@mandriva.com> | 2003-09-10 14:28:48 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-09-10 14:28:48 +0000 |
commit | a814d357d81a3ccd4a3cafaef4c36ce290d82605 (patch) | |
tree | 0cf7e3a6b6cdf4fdd75d323ee73d8fdaa552fb29 /perl-install | |
parent | 5ad25b83b9a0cc761b1878318c38e27e60481a02 (diff) | |
download | drakx-a814d357d81a3ccd4a3cafaef4c36ce290d82605.tar drakx-a814d357d81a3ccd4a3cafaef4c36ce290d82605.tar.gz drakx-a814d357d81a3ccd4a3cafaef4c36ce290d82605.tar.bz2 drakx-a814d357d81a3ccd4a3cafaef4c36ce290d82605.tar.xz drakx-a814d357d81a3ccd4a3cafaef4c36ce290d82605.zip |
fixed the fpons trick (which was false moreover)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/mouse.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/mouse.pm b/perl-install/mouse.pm index 3de4cb781..a4d74e7a3 100644 --- a/perl-install/mouse.pm +++ b/perl-install/mouse.pm @@ -333,7 +333,7 @@ sub load_modules { /serial/ and @l = qw(serial); /USB/ and @l = qw(hid mousedev usbmouse); } - foreach ($mouse->{wacom}) { + for (@{$mouse->{wacom}}) { /ttyS/ and push @l, qw(serial); /event/ and push @l, qw(wacom evdev); } |