sdl2: remove LLVM compiler check no-op.

Closes #8041.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
Mike McQuaid 2016-12-19 17:49:51 +00:00
parent af467b70c8
commit e04596aa9c

View file

@ -42,7 +42,7 @@ class Sdl2 < Formula
args = %W[--prefix=#{prefix}]
# LLVM-based compilers choke on the assembly code packaged with SDL.
if ENV.compiler == :llvm || (ENV.compiler == :clang && DevelopmentTools.clang_build_version < 421)
if ENV.compiler == :clang && DevelopmentTools.clang_build_version < 421
args << "--disable-assembly"
end
args << "--without-x"