diff options
author | David Conrad <lessen42@gmail.com> | 2010-03-07 03:01:36 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2010-03-07 03:01:36 +0000 |
commit | 4def700e9eb05a5812ef05ac8f109b54afebba12 (patch) | |
tree | dd80b8592d69a56acd8126f16037e96e156cae28 | |
parent | 457c08ba3cf790d7e1365a5f947abc1a38c0c54e (diff) | |
download | ffmpeg-4def700e9eb05a5812ef05ac8f109b54afebba12.tar.gz |
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
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |