summaryrefslogtreecommitdiffstats
path: root/gst-libs/gst/audio
diff options
context:
space:
mode:
Diffstat (limited to 'gst-libs/gst/audio')
-rwxr-xr-xgst-libs/gst/audio/make_filter12
1 files changed, 10 insertions, 2 deletions
diff --git a/gst-libs/gst/audio/make_filter b/gst-libs/gst/audio/make_filter
index 58b95434..eaeaa060 100755
--- a/gst-libs/gst/audio/make_filter
+++ b/gst-libs/gst/audio/make_filter
@@ -1,5 +1,10 @@
#!/bin/sh
+LANG=C
+LC_COLLATE=C
+export LANG
+export LC_COLLATE
+
Template=$1;
srcfile=$2;
@@ -18,8 +23,11 @@ id=`echo '$Id$' | sed \
-e 's/\$I[d]: \([^$]*\)\$/\1/g'`
echo $id
-TEMPLATE=`echo $Template | tr a-z A-Z`
-template=`echo $Template | tr A-Z a-z`
+TEMPLATE=`echo $Template | tr [:lower:] [:upper:]`
+template=`echo $Template | tr [:upper:] [:lower:]`
+
+echo TEMPLATE $TEMPLATE
+echo template $template
# remember to break up the Id: in the line below
sed \