1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-08 13:22:53 +02:00

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
This commit is contained in:
David Conrad 2010-03-07 03:01:36 +00:00
parent 457c08ba3c
commit 4def700e9e

4
configure vendored
View File

@ -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