diff options
Diffstat (limited to 'Library/Formula/ruby.rb')
| -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  | 
