From e0aafb8e9ba0eba53809bb60ea4215a7cb3880fc Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Tue, 10 Nov 2009 15:16:04 +0000 Subject: small perl_checker fix --- perl-install/harddrake/sound.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-install/harddrake/sound.pm b/perl-install/harddrake/sound.pm index f556d4603..7d4960d46 100644 --- a/perl-install/harddrake/sound.pm +++ b/perl-install/harddrake/sound.pm @@ -263,7 +263,7 @@ sub set_PA_autospan { my $pulse_config_file = "$::prefix/etc/pulse/daemon.conf"; sub is_5_1_in_pulseaudio_enabled() { - my ($val) = (cat_($pulse_config_file) =~ /^default-sample-channels\s*=\s*(\d+)/m); #^ + my ($val) = cat_($pulse_config_file) =~ /^default-sample-channels\s*=\s*(\d+)/m; #^ $val ||= 2; $val == 6; } -- cgit v1.2.1