[FFmpeg-cvslog] r22274 - trunk/configure

conrad subversion
Sun Mar 7 04:01:36 CET 2010


Author: conrad
Date: Sun Mar  7 04:01:36 2010
New Revision: 22274

Log:
Fix clang sysroot flag

Older versions accepted both with and without an '=', but newer versions
require the '=' to be omitted

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	Sun Mar  7 03:35:45 2010	(r22273)
+++ trunk/configure	Sun Mar  7 04:01:36 2010	(r22274)
@@ -1862,8 +1862,8 @@ if test -n "$sysroot"; then
             add_ldflags  --sysroot="$sysroot"
         ;;
         clang)
-            add_cppflags -isysroot="$sysroot"
-            add_ldflags -isysroot="$sysroot"
+            add_cppflags -isysroot "$sysroot"
+            add_ldflags -isysroot "$sysroot"
         ;;
     esac
 fi



More information about the ffmpeg-cvslog mailing list