travis: use clang for ffmpeg/libav compilation

I overlooked the fact that the ffmpeg/libav build system only supports `--cc`
and completly ignores $CC. Hopefully this makes the build times a little
faster.

Fixes #332
This commit is contained in:
Stefano Pigozzi 2013-11-06 20:56:28 +01:00
parent ce72aaae7b
commit 057c2e25b0
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ class Libav < TravisDepsBuilder
end
def configure
[super, "--disable-doc"].join(" ")
[super, "--disable-doc", "--cc=#{ENV['CC']}"].join(" ")
end
end