diff options
| author | Adam Vandenberg | 2011-04-21 09:42:27 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-04-23 08:36:47 -0700 |
| commit | 83ed49411f076e30ced04c2cbebb054b2645a431 (patch) | |
| tree | ad1ddf5db7816bfb654d040bb1d9b5d7a2856782 /Library/Formula/bullet.rb | |
| parent | f5e81699187d554eb8e47b574876b4b15d5d202f (diff) | |
| download | homebrew-83ed49411f076e30ced04c2cbebb054b2645a431.tar.bz2 | |
Use ARGV.build_universal?
Diffstat (limited to 'Library/Formula/bullet.rb')
| -rw-r--r-- | Library/Formula/bullet.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/bullet.rb b/Library/Formula/bullet.rb index 0633a8832..939054a86 100644 --- a/Library/Formula/bullet.rb +++ b/Library/Formula/bullet.rb @@ -29,7 +29,7 @@ class Bullet < Formula args << "-DCMAKE_INSTALL_PREFIX=#{prefix}" end - args << "-DCMAKE_OSX_ARCHITECTURES='i386;x86_64'" if ARGV.include? "--universal" + args << "-DCMAKE_OSX_ARCHITECTURES='i386;x86_64'" if ARGV.build_universal? args << "-DBUILD_DEMOS=OFF" if not ARGV.include? "--build-demo" args << "-DBUILD_EXTRAS=OFF" if not ARGV.include? "--build-extra" |
