remove unnecessary backslashes

Originally committed as revision 12302 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2008-03-03 21:48:24 +00:00
parent 81124ba0d1
commit 932ccf398a
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -962,7 +962,7 @@ find_things(){
thing=$1
pattern=$2
file=$source_path/$3
sed -n "s/^[^#]*$pattern.*([^,]*, *\\([^,]*\\)\(,.*\)*).*/\\1_$thing/p" "$file"
sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
}
ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)