提交 4def700e 编写于 作者: D 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
上级 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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册