blob: 73722dadb27a2598b2cfe0f025598c7242e599e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class BuildOptions
def build_32_bit?
odeprecated "build.build_32_bit?"
include?("32-bit") && option_defined?("32-bit")
end
def build_bottle?
odeprecated "build.build_bottle?", "build.bottle?"
bottle?
end
end
|