aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorElliot Saba2012-08-14 11:52:42 -0700
committerJack Nagel2012-08-14 13:54:32 -0500
commitc6dee782206c77700ea10224e516b9f0cc935a78 (patch)
tree8a47f5a517f2c627e3909b47e3e597de50879474 /Library
parente51c59144cc087a208eced3b848e759abf0e8d57 (diff)
downloadhomebrew-c6dee782206c77700ea10224e516b9f0cc935a78.tar.bz2
llvm: fix syntax error from commit 576b9fae0679e2a
Closes #14183. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/llvm.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/llvm.rb b/Library/Formula/llvm.rb
index f20c391ae..fedf9c673 100644
--- a/Library/Formula/llvm.rb
+++ b/Library/Formula/llvm.rb
@@ -28,7 +28,7 @@ class Llvm < Formula
option 'rtti', 'Build with C++ RTTI'
def install
- if build.include? 'shared' && build.universal?
+ if build.universal? and build.include? 'shared'
onoe "Cannot specify both shared and universal (will not build)"
exit 1
end