diff options
author | Stefano Pigozzi <stefano.pigozzi@gmail.com> | 2013-11-06 20:56:28 +0100 |
---|---|---|
committer | Stefano Pigozzi <stefano.pigozzi@gmail.com> | 2013-11-06 20:56:28 +0100 |
commit | 057c2e25b012afbd2ba5837da2f4a2922a64fd64 (patch) | |
tree | be9ae9966952876b9c029305a7cc1a2ab6d190fa /travis-deps | |
parent | ce72aaae7b15a7928d342a5e492036b9af64eab3 (diff) |
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
Diffstat (limited to 'travis-deps')
-rwxr-xr-x | travis-deps | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/travis-deps b/travis-deps index 322ddab80c..741a3d00e5 100755 --- a/travis-deps +++ b/travis-deps @@ -72,7 +72,7 @@ class Libav < TravisDepsBuilder end def configure - [super, "--disable-doc"].join(" ") + [super, "--disable-doc", "--cc=#{ENV['CC']}"].join(" ") end end |