diff options
| -rw-r--r-- | Library/Formula/mkvtoolnix.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Library/Formula/mkvtoolnix.rb b/Library/Formula/mkvtoolnix.rb index 93b7bf6f9..e12658096 100644 --- a/Library/Formula/mkvtoolnix.rb +++ b/Library/Formula/mkvtoolnix.rb @@ -13,6 +13,12 @@ class Mkvtoolnix < Formula depends_on 'lzo' => :optional def install + # FIXME This should be replaced with fails_with_clang once available + # build 318 + if ENV.compiler == :clang + opoo "Formula will not build with Clang, using LLVM." + ENV.llvm + end system "./configure", "--disable-debug", "--prefix=#{prefix}", "--with-boost-libdir=#{HOMEBREW_PREFIX}/lib", # For non-/usr/local prefix |
