summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDavid Conrad <lessen42@gmail.com>2010-03-07 03:01:36 +0000
committerDavid Conrad <lessen42@gmail.com>2010-03-07 03:01:36 +0000
commit4def700e9eb05a5812ef05ac8f109b54afebba12 (patch)
treedd80b8592d69a56acd8126f16037e96e156cae28 /configure
parent457c08ba3cf790d7e1365a5f947abc1a38c0c54e (diff)
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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files 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