From 826d9a9e661541d3b6edfb2df01ce24284a2c9cf Mon Sep 17 00:00:00 2001 From: David Schleef Date: Tue, 9 Mar 2004 20:55:30 +0000 Subject: [PATCH] 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) --- ChangeLog | 8 ++++++++ gst-libs/gst/audio/make_filter | 9 ++++----- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9d7cb7b111..3ce8e9536e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2004-03-09 David Schleef + + * 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 * configure.ac: bump nano to 1 diff --git a/gst-libs/gst/audio/make_filter b/gst-libs/gst/audio/make_filter index 6a8efcadbf..58b954347e 100755 --- a/gst-libs/gst/audio/make_filter +++ b/gst-libs/gst/audio/make_filter @@ -14,13 +14,12 @@ if test x"$2" = x ; then srcfile="gstaudiofiltertemplate.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 \