ext/lcs/Makefile.am: Fix so that the lcs colorspace plugin doesn't conflict with...
authorDavid Schleef <ds@schleef.org>
Tue, 9 Mar 2004 20:55:30 +0000 (20:55 +0000)
committerDavid Schleef <ds@schleef.org>
Tue, 9 Mar 2004 20:55:30 +0000 (20:55 +0000)
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)

ChangeLog
gst/videofilter/make_filter

index 9d7cb7b..3ce8e95 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2004-03-09  David Schleef  <ds@schleef.org>
+
+       * 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)
+
 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
 
        * configure.ac: bump nano to 1
index 5eec96a..990ccb0 100755 (executable)
@@ -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 \