From 4def700e9eb05a5812ef05ac8f109b54afebba12 Mon Sep 17 00:00:00 2001 From: David Conrad Date: Sun, 7 Mar 2010 03:01:36 +0000 Subject: [PATCH] Fix clang sysroot flag 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 9dd4489699..7373e6aace 100755 --- 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