summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/NEWS2
-rw-r--r--perl-install/harddrake/sound.pm4
2 files changed, 4 insertions, 2 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index abb6da081..ed5f6505c 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,5 @@
+- draksound:
+ o be more robust when managing /etc/alsa/pulse-default.conf
- drakbug:
o automatically report CPU name & kernel version
o prefill the platform field
diff --git a/perl-install/harddrake/sound.pm b/perl-install/harddrake/sound.pm
index 885e48d1f..41084a1c3 100644
--- a/perl-install/harddrake/sound.pm
+++ b/perl-install/harddrake/sound.pm
@@ -233,9 +233,9 @@ sub set_pulseaudio_routing {
my ($val) = @_;
substInFile {
if ($val) {
- s/^$disabling_routing//;
+ s/^(?:$disabling_routing)*//g;
} else {
- s/^/$disabling_routing/;
+ s/^/$disabling_routing/ if !/^$disabling_routing/;
}
} $alsa_routing_config_file;
}