Commit 0b196f59 authored by conrad's avatar conrad

Fix clang sysroot flag

Older versions accepted both with and without an '=', but newer versions
require the '=' to be omitted

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22274 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d4944287
...@@ -1862,8 +1862,8 @@ if test -n "$sysroot"; then ...@@ -1862,8 +1862,8 @@ if test -n "$sysroot"; then
add_ldflags --sysroot="$sysroot" add_ldflags --sysroot="$sysroot"
;; ;;
clang) clang)
add_cppflags -isysroot="$sysroot" add_cppflags -isysroot "$sysroot"
add_ldflags -isysroot="$sysroot" add_ldflags -isysroot "$sysroot"
;; ;;
esac esac
fi 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