aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/software_spec.rb
diff options
context:
space:
mode:
authorMike McQuaid2016-12-20 10:22:30 +0000
committerMike McQuaid2016-12-20 10:22:30 +0000
commitf98304026bcb3bc68b47210f2434e09683987363 (patch)
treefd5075fd3e7a63efbac0455b8891f2e1933bc5de /Library/Homebrew/software_spec.rb
parent482568579b8c9e699ca19207643cc483975869a4 (diff)
downloadbrew-f98304026bcb3bc68b47210f2434e09683987363.tar.bz2
Deprecate 32-bit options.
These were formerly supported but as it has been a very long time since 32-bit software was necessary on macOS these have been deprecated with a `brew audit` warning and a future `odeprecated`.
Diffstat (limited to 'Library/Homebrew/software_spec.rb')
-rw-r--r--Library/Homebrew/software_spec.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/Library/Homebrew/software_spec.rb b/Library/Homebrew/software_spec.rb
index 0c230f643..fb07f6c55 100644
--- a/Library/Homebrew/software_spec.rb
+++ b/Library/Homebrew/software_spec.rb
@@ -13,9 +13,8 @@ class SoftwareSpec
extend Forwardable
PREDEFINED_OPTIONS = {
- :universal => Option.new("universal", "Build a universal binary"),
- :cxx11 => Option.new("c++11", "Build using C++11 mode"),
- "32-bit" => Option.new("32-bit", "Build 32-bit only"),
+ universal: Option.new("universal", "Build a universal binary"),
+ cxx11: Option.new("c++11", "Build using C++11 mode"),
}.freeze
attr_reader :name, :full_name, :owner