mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00

Add more `odeprecated` calls to places that have been deprecated for a while in the wild and move some of the existing `odeprecated` calls to be `odisabled` to allow deleting the compatibility code.
10 lines
165 B
Ruby
10 lines
165 B
Ruby
class BuildOptions
|
|
def build_32_bit?
|
|
odisabled "build.build_32_bit?"
|
|
end
|
|
|
|
def build_bottle?
|
|
odisabled "build.build_bottle?", "build.bottle?"
|
|
end
|
|
end
|