diff options
author | Francois Pons <fpons@mandriva.com> | 2003-09-10 14:30:50 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-09-10 14:30:50 +0000 |
commit | 044bc092c899ed7d04dc18ade013177b7902aa98 (patch) | |
tree | 9228b15bd65fc7b7ad9e2743ab6522eb0f1ccb68 /perl-install | |
parent | a814d357d81a3ccd4a3cafaef4c36ce290d82605 (diff) | |
download | drakx-044bc092c899ed7d04dc18ade013177b7902aa98.tar drakx-044bc092c899ed7d04dc18ade013177b7902aa98.tar.gz drakx-044bc092c899ed7d04dc18ade013177b7902aa98.tar.bz2 drakx-044bc092c899ed7d04dc18ade013177b7902aa98.tar.xz drakx-044bc092c899ed7d04dc18ade013177b7902aa98.zip |
fixed the fix of fpons trick...
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 a4d74e7a3..6a573ace7 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); } - for (@{$mouse->{wacom}}) { + foreach (@{$mouse->{wacom}}) { /ttyS/ and push @l, qw(serial); /event/ and push @l, qw(wacom evdev); } |