diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-11-10 15:16:04 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-11-10 15:16:04 +0000 |
commit | e0aafb8e9ba0eba53809bb60ea4215a7cb3880fc (patch) | |
tree | 87e56cc07bcf0705610891b7d1e3639765008dcb /perl-install | |
parent | b64e1746313a198c9efae62b93543805178a0d6d (diff) | |
download | drakx-e0aafb8e9ba0eba53809bb60ea4215a7cb3880fc.tar drakx-e0aafb8e9ba0eba53809bb60ea4215a7cb3880fc.tar.gz drakx-e0aafb8e9ba0eba53809bb60ea4215a7cb3880fc.tar.bz2 drakx-e0aafb8e9ba0eba53809bb60ea4215a7cb3880fc.tar.xz drakx-e0aafb8e9ba0eba53809bb60ea4215a7cb3880fc.zip |
small perl_checker fix
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/harddrake/sound.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |