[FFmpeg-cvslog] r15656 - trunk/configure

mru subversion
Tue Oct 21 02:57:17 CEST 2008


Author: mru
Date: Tue Oct 21 02:57:17 2008
New Revision: 15656

Log:
configure: fix handling of option arguments containing = sign

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Tue Oct 21 02:57:17 2008
@@ -1104,7 +1104,7 @@ for opt do
     --help|-h) show_help
     ;;
     *)
-    optname="${opt%=*}"
+    optname="${opt%%=*}"
     optname="${optname#--}"
     optname=$(echo "$optname" | sed 's/-/_/g')
     is_in $optname $CMDLINE_SET || die_unknown $opt




More information about the ffmpeg-cvslog mailing list