[FFmpeg-cvslog] r19688 - trunk/configure

mru subversion
Sun Aug 23 17:39:39 CEST 2009


Author: mru
Date: Sun Aug 23 17:39:39 2009
New Revision: 19688

Log:
configure: fix filter() function when matching multiple patterns

This makes comma-separated patters to --disable-decoder and friends
work correctly with POSIX-compliant shells.

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	Sun Aug 23 15:46:07 2009	(r19687)
+++ trunk/configure	Sun Aug 23 17:39:39 2009	(r19688)
@@ -295,7 +295,7 @@ filter(){
     pat=$1
     shift
     for v; do
-        case "$v" in $pat) echo "$v" ;; esac
+        eval "case $v in $pat) echo $v ;; esac"
     done
 }
 



More information about the ffmpeg-cvslog mailing list