Skip to content
Snippets Groups Projects
Commit cb700b67 authored by Martin Afanasjew's avatar Martin Afanasjew Committed by GitHub
Browse files

Merge pull request #767 from woodruffw/ruby-macho-enable

Enable ruby-macho by default.
parents 4108c00b f0efaac5
No related branches found
No related tags found
No related merge requests found
......@@ -909,7 +909,6 @@ module Homebrew
ENV["HOMEBREW_DEVELOPER"] = "1"
ENV["HOMEBREW_SANDBOX"] = "1"
ENV["HOMEBREW_RUBY_MACHO"] = "1"
ENV["HOMEBREW_NO_EMOJI"] = "1"
ENV["HOMEBREW_FAIL_LOG_LINES"] = "150"
ENV["HOMEBREW_EXPERIMENTAL_FILTER_FLAGS_ON_DEPS"] = "1"
......
class Keg
if ENV["HOMEBREW_RUBY_MACHO"]
if !ENV["HOMEBREW_NO_RUBY_MACHO"]
require "os/mac/ruby_keg"
include RubyKeg
else
......
require "os/mac/shared_mach"
class Pathname
if ENV["HOMEBREW_RUBY_MACHO"]
if !ENV["HOMEBREW_NO_RUBY_MACHO"]
require "os/mac/ruby_mach"
include RubyMachO
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment