From 22ad938758373ec4e2f8490d62f2cdc237d50d7c Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 11 Nov 2002 22:20:22 +0000 Subject: - replace ... =~ 'foo' with ... =~ /foo/ - remove unneeded parentheses for things like ... if (...) --- perl-install/install_steps_interactive.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/install_steps_interactive.pm') diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index af4daabf1..e18fccb2c 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1047,7 +1047,7 @@ sub summary { harddrake::v4l::config($o, $driver); } } - } grep { $_->{driver} =~ '(bttv|saa7134)' } detect_devices::probeall()), + } grep { $_->{driver} =~ /(bttv|saa7134)/ } detect_devices::probeall()), ]); install_steps::configureTimezone($o); #- do not forget it. } -- cgit v1.2.1