diff options
Diffstat (limited to 'gst-libs')
-rwxr-xr-x | gst-libs/gst/audio/make_filter | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gst-libs/gst/audio/make_filter b/gst-libs/gst/audio/make_filter index 6a8efcad..58b95434 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 \ |