aboutsummaryrefslogtreecommitdiffstats
path: root/main/aumix/aumix-2.8-mute.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/aumix/aumix-2.8-mute.patch')
-rw-r--r--main/aumix/aumix-2.8-mute.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/main/aumix/aumix-2.8-mute.patch b/main/aumix/aumix-2.8-mute.patch
deleted file mode 100644
index 8a32fd5b9b..0000000000
--- a/main/aumix/aumix-2.8-mute.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Fix mute script: save volume and then set it to 0 instead of saving it directly
-to 0. Bug #122087.
-Index: aumix-2.8/src/mute
-===================================================================
---- aumix-2.8.orig/src/mute
-+++ aumix-2.8/src/mute
-@@ -8,7 +8,8 @@
- volumes=$(aumix -vq |tr -d ,)
- if [ $(echo $volumes | awk '{print $2}') -ne 0 -o \
- $(echo $volumes | awk '{print $3}') -ne 0 ]; then
-- aumix -S -v 0
-+ aumix -S
-+ aumix -v 0
- else
- aumix -L > /dev/null
- fi