diff options
| author | Mislav Marohnić | 2011-02-06 20:42:58 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2011-02-06 13:51:09 -0800 |
| commit | f282737d6fd902a55561d8f652981aebe6a6dbb8 (patch) | |
| tree | 62c83585a2d1b4baa51e048466d5ac0c2e547ac0 /Library/Formula | |
| parent | 0cceae6cf443a664c30b5a7cdcf9e58f9a7ac03f (diff) | |
| download | homebrew-f282737d6fd902a55561d8f652981aebe6a6dbb8.tar.bz2 | |
"ruby" formula: add "--universal" flag for arch=x86_64,i386
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/ruby.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/ruby.rb b/Library/Formula/ruby.rb index 5b8141c86..02da0df98 100644 --- a/Library/Formula/ruby.rb +++ b/Library/Formula/ruby.rb @@ -13,6 +13,7 @@ class Ruby <Formula [ ["--with-suffix", "Add a 19 suffix to commands"], ["--with-doc", "Install with the Ruby documentation"], + ["--universal", "Compile a universal binary (arch=x86_64,i386)"], ] end @@ -48,6 +49,7 @@ class Ruby <Formula "--enable-shared"] args << "--program-suffix=19" if ARGV.include? "--with-suffix" + args << "--with-arch=x86_64,i386" if ARGV.include? "--universal" # Put gem, site and vendor folders in the HOMEBREW_PREFIX |
