Fix clang sysroot flag
authorDavid Conrad <lessen42@gmail.com>
Sun, 7 Mar 2010 03:01:36 +0000 (03:01 +0000)
committerDavid Conrad <lessen42@gmail.com>
Sun, 7 Mar 2010 03:01:36 +0000 (03:01 +0000)
Older versions accepted both with and without an '=', but newer versions
require the '=' to be omitted

Originally committed as revision 22274 to svn://svn.ffmpeg.org/ffmpeg/trunk

configure

index 9dd4489..7373e6a 100755 (executable)
--- a/configure
+++ b/configure
@@ -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