diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-03-23 17:57:32 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-03-23 19:01:16 +0100 |
commit | cc6d549adbb838ef87b1f251ca469dc4c3dd39aa (patch) | |
tree | d422ae574bc9674bfa210736daa7734c0c312d25 | |
parent | 942cded690bc6dc931c60078f39cf0f339a89058 (diff) | |
download | ffmpeg-cc6d549adbb838ef87b1f251ca469dc4c3dd39aa.tar.gz |
Always pass the configure option sysroot to --sysroot and -isysroot.
On darwin, --sysroot may be ignored.
-rwxr-xr-x | configure | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -3398,6 +3398,9 @@ if test -n "$sysroot"; then gcc|llvm_gcc|clang) add_cppflags --sysroot="$sysroot" add_ldflags --sysroot="$sysroot" +# On Darwin --sysroot may be ignored, -isysroot always affects headers and linking + add_cppflags -isysroot "$sysroot" + add_ldflags -isysroot "$sysroot" ;; tms470) add_cppflags -I"$sysinclude" |