aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/llvm.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2011-04-21 09:42:27 -0700
committerAdam Vandenberg2011-04-23 08:36:47 -0700
commit83ed49411f076e30ced04c2cbebb054b2645a431 (patch)
treead1ddf5db7816bfb654d040bb1d9b5d7a2856782 /Library/Formula/llvm.rb
parentf5e81699187d554eb8e47b574876b4b15d5d202f (diff)
downloadhomebrew-83ed49411f076e30ced04c2cbebb054b2645a431.tar.bz2
Use ARGV.build_universal?
Diffstat (limited to 'Library/Formula/llvm.rb')
-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 ed3fcd951..955fa3517 100644
--- a/Library/Formula/llvm.rb
+++ b/Library/Formula/llvm.rb
@@ -1,7 +1,7 @@
require 'formula'
def build_clang?; ARGV.include? '--with-clang'; end
-def build_universal?; ARGV.include? '--universal'; end
+def build_universal?; ARGV.build_universal?; end
def build_shared?; ARGV.include? '--shared'; end
def build_rtti?; ARGV.include? '--rtti'; end