mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
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)
This commit is contained in:
parent
df94f12258
commit
826d9a9e66
2 changed files with 12 additions and 5 deletions
|
@ -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>
|
2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* configure.ac: bump nano to 1
|
* configure.ac: bump nano to 1
|
||||||
|
|
|
@ -14,13 +14,12 @@ if test x"$2" = x ; then
|
||||||
srcfile="gstaudiofiltertemplate.c"
|
srcfile="gstaudiofiltertemplate.c"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
id=$(echo '$Id$' | sed \
|
id=`echo '$Id$' | sed \
|
||||||
-e 's/\$I[d]: \([^$]*\)\$/\1/g' \
|
-e 's/\$I[d]: \([^$]*\)\$/\1/g'`
|
||||||
)
|
|
||||||
echo $id
|
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
|
# remember to break up the Id: in the line below
|
||||||
sed \
|
sed \
|
||||||
|
|
Loading…
Reference in a new issue