diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-12-10 00:54:27 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-12-10 00:54:27 +0000 |
commit | 3567c50a33be996d7a3f4fd6c622622105d55a51 (patch) | |
tree | 525589a2426f64fc2d1b9e8fe00b58c31bced634 /perl-install/standalone/drakxtv | |
parent | 24267eb313f4272a92e0909ca47a831f7ce047c0 (diff) | |
download | drakx-3567c50a33be996d7a3f4fd6c622622105d55a51.tar drakx-3567c50a33be996d7a3f4fd6c622622105d55a51.tar.gz drakx-3567c50a33be996d7a3f4fd6c622622105d55a51.tar.bz2 drakx-3567c50a33be996d7a3f4fd6c622622105d55a51.tar.xz drakx-3567c50a33be996d7a3f4fd6c622622105d55a51.zip |
minimal perl_checker fixes to have only warnings
Diffstat (limited to 'perl-install/standalone/drakxtv')
-rwxr-xr-x | perl-install/standalone/drakxtv | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakxtv b/perl-install/standalone/drakxtv index 75f122f99..b3f9c8802 100755 --- a/perl-install/standalone/drakxtv +++ b/perl-install/standalone/drakxtv @@ -133,7 +133,7 @@ my @devices = grep { ($_->{media_type} eq 'MULTIMEDIA_VIDEO') || $_->{driver} eq if (@devices) { # TODO: That need some work for multiples TV cards foreach (@devices) { - if (( $< == 0) && (grep { $_->{driver} =~ '(bttv|saa7134)' } @devices)) { + if (( $< == 0) && (grep { $_->{driver} =~ /(bttv|saa7134)/ } @devices)) { require harddrake::v4l; require modules; no strict 'subs'; |