brew/Library/Homebrew/compat/build_options.rb
Mike McQuaid f98304026b 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`.
2016-12-20 10:22:30 +00:00

7 lines
141 B
Ruby

class BuildOptions
def build_32_bit?
# odeprecated "build.build_32_bit?"
include?("32-bit") && option_defined?("32-bit")
end
end