summaryrefslogtreecommitdiff
path: root/audio/muse/patches
diff options
context:
space:
mode:
authorrillig <rillig>2006-10-23 23:48:45 +0000
committerrillig <rillig>2006-10-23 23:48:45 +0000
commitbab6faa7894213fa55a77459f8cc4f56dc2e6ff2 (patch)
treea6f908f2fee9a4cc324ce9f1fba11040a405e26b /audio/muse/patches
parentc507311298907fa680e3b25029ac96f59a3d250f (diff)
downloadpkgsrc-bab6faa7894213fa55a77459f8cc4f56dc2e6ff2.tar.gz
Fixed "test ==".
Diffstat (limited to 'audio/muse/patches')
-rw-r--r--audio/muse/patches/patch-ag14
1 files changed, 14 insertions, 0 deletions
diff --git a/audio/muse/patches/patch-ag b/audio/muse/patches/patch-ag
new file mode 100644
index 00000000000..ba6a52633fe
--- /dev/null
+++ b/audio/muse/patches/patch-ag
@@ -0,0 +1,14 @@
+$NetBSD: patch-ag,v 1.1 2006/10/23 23:48:45 rillig Exp $
+
+--- utils/rami.orig 2003-12-08 13:20:33.000000000 +0100
++++ utils/rami 2006-10-24 01:45:59.000000000 +0200
+@@ -66,8 +66,7 @@ FORMAT=$DEFAULT_FORMAT
+ RATE=22050
+ QUALITY=3
+ CHANNELS=2
+-VUMETER="`which vumeter 2> /dev/null`"
+-if [ $? == 1 ]; then VUMETER=""; fi
++VUMETER="`which vumeter 2> /dev/null`" || VUMETER=""
+
+
+ OPTS=`getopt -o hvQr:f:q:c:o:e: --long help,version,quiet,rate:,format:,quality:,channels:,output:,effect: \