diff options
| author | Adam Vandenberg | 2012-08-08 22:10:35 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-08-08 22:27:28 -0700 |
| commit | 5cfe2a90c84823c5bb8580ebb24177209089902a (patch) | |
| tree | cb8b5d33301b694bdec6219346684592575be50d | |
| parent | 16aab049c2414b9e5ecd4ad05674d24919b32fde (diff) | |
| download | homebrew-5cfe2a90c84823c5bb8580ebb24177209089902a.tar.bz2 | |
bdw-gc: use options dsl
| -rw-r--r-- | Library/Formula/bdw-gc.rb | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Library/Formula/bdw-gc.rb b/Library/Formula/bdw-gc.rb index 8ddd02879..3376210e2 100644 --- a/Library/Formula/bdw-gc.rb +++ b/Library/Formula/bdw-gc.rb @@ -10,12 +10,10 @@ class BdwGc < Formula cause 'Segfault 11 during make check' end - def options - [['--universal', 'Make a 32/64-bit Intel build.']] - end + option :universal def install - ENV.universal_binary if ARGV.build_universal? + ENV.universal_binary if build.universal? system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", |
