BottleSpecification: Do not skip bottle relocation on Linux

Bottles must be relocated on Linux to find the brewed glibc and gcc.
This commit is contained in:
Shaun Jackman 2018-08-15 10:21:42 -07:00
parent 2060eb233d
commit 294db31849
3 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class BottleSpecification
def skip_relocation?
false
end
end

View File

@ -0,0 +1 @@
require "extend/os/linux/software_spec" if OS.linux?

View File

@ -407,3 +407,5 @@ class PourBottleCheck
@formula.send(:define_method, :pour_bottle?, &block)
end
end
require "extend/os/software_spec"