summaryrefslogtreecommitdiffstats
path: root/gst/videofilter
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2004-03-09 20:55:30 +0000
committerDavid Schleef <ds@schleef.org>2004-03-09 20:55:30 +0000
commit1e292a5bd31b54ac68932dbe72ad772bd8661c4a (patch)
tree9abe36967f57ecb8b4eea2f19113165677300367 /gst/videofilter
parentda43641125bef4c53a5c4031a80ee079636958ed (diff)
ext/lcs/Makefile.am: Fix so that the lcs colorspace plugin doesn't conflict with the internal colorspace plugin.
Original commit message from CVS: * ext/lcs/Makefile.am: Fix so that the lcs colorspace plugin doesn't conflict with the internal colorspace plugin. * gst-libs/gst/audio/make_filter: Use `` instead of $() to satisfy the crappy-ass shell shipped by a certain vendor. * gst/videofilter/make_filter: same (bug #135299)
Diffstat (limited to 'gst/videofilter')
-rwxr-xr-xgst/videofilter/make_filter9
1 files changed, 4 insertions, 5 deletions
diff --git a/gst/videofilter/make_filter b/gst/videofilter/make_filter
index 5eec96a1..990ccb04 100755
--- a/gst/videofilter/make_filter
+++ b/gst/videofilter/make_filter
@@ -14,13 +14,12 @@ if test x"$2" = x ; then
srcfile="gstvideotemplate.c"
fi
-id=$(echo '$Id$' | sed \
- -e 's/\$I[d]: \([^$]*\)\$/\1/g' \
- )
+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 a-z A-Z`
+template=`echo $Template | tr A-Z a-z`
# remember to break up the Id: in the line below
sed \