aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2013-12-25 16:26:22 -0600
committerJack Nagel2013-12-25 16:26:39 -0600
commit4dbaeae3ffaeb10a6af4ee80f9e79c3c6da0faa6 (patch)
treeeea77b6f54d7daa1ff34080ef66ec0cda06a1978 /Library/Formula
parentce9966e367a40c21338fadb1701b124871d48654 (diff)
downloadhomebrew-4dbaeae3ffaeb10a6af4ee80f9e79c3c6da0faa6.tar.bz2
ruby: fix program-suffix option
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/ruby.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/ruby.rb b/Library/Formula/ruby.rb
index 3fd700186..988b024ee 100644
--- a/Library/Formula/ruby.rb
+++ b/Library/Formula/ruby.rb
@@ -11,7 +11,7 @@ class Ruby < Formula
end
option :universal
- option 'with-suffix', 'Suffix commands with "20"'
+ option 'with-suffix', 'Suffix commands with "21"'
option 'with-doc', 'Install documentation'
option 'with-tcltk', 'Install with Tcl/Tk support'
@@ -30,7 +30,7 @@ class Ruby < Formula
system "autoconf" if build.head?
args = %W[--prefix=#{prefix} --enable-shared]
- args << "--program-suffix=20" if build.with? "suffix"
+ args << "--program-suffix=21" if build.with? "suffix"
args << "--with-arch=#{Hardware::CPU.universal_archs.join(',')}" if build.universal?
args << "--with-out-ext=tk" unless build.with? "tcltk"
args << "--disable-install-doc" unless build.with? "doc"