Commit 4def700e authored by David Conrad's avatar David Conrad

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
parent 457c08ba
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment