remove unnecessary backslashes
authorMåns Rullgård <mans@mansr.com>
Mon, 3 Mar 2008 21:48:24 +0000 (21:48 +0000)
committerMåns Rullgård <mans@mansr.com>
Mon, 3 Mar 2008 21:48:24 +0000 (21:48 +0000)
Originally committed as revision 12302 to svn://svn.ffmpeg.org/ffmpeg/trunk

configure

index 44225ec..f283e96 100755 (executable)
--- a/configure
+++ b/configure
@@ -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)