diff options
| author | Jack Nagel | 2012-12-24 21:38:07 -0600 |
|---|---|---|
| committer | Jack Nagel | 2012-12-24 21:38:07 -0600 |
| commit | 4562ce41f5dca8b3b4bb6cd385b46e6b5263d926 (patch) | |
| tree | b0d8d7a1c27dc65ae91657625aaf19babf65d98b /Library/Formula | |
| parent | 947a1f06b6783a3c35341cb43576e49a3b4e324a (diff) | |
| download | homebrew-4562ce41f5dca8b3b4bb6cd385b46e6b5263d926.tar.bz2 | |
sdl: fix conditional
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/sdl.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/sdl.rb b/Library/Formula/sdl.rb index 21b8a1781..c18ea59dd 100644 --- a/Library/Formula/sdl.rb +++ b/Library/Formula/sdl.rb @@ -31,7 +31,7 @@ class Sdl < Formula args = %W[--prefix=#{prefix}] args << "--disable-nasm" unless MacOS.version >= :mountain_lion # might work with earlier, might only work with new clang # LLVM-based compilers choke on the assembly code packaged with SDL. - args << '--disable-assembly' if ENV.compiler == :llvm or ENV.compiler == :clang and MacOS.clang_build_version < 421 + args << '--disable-assembly' if ENV.compiler == :llvm or (ENV.compiler == :clang and MacOS.clang_build_version < 421) args << '--without-x' system './configure', *args |
