From f0efaac5aa68e675c687cd413147dd0cf2c68edc Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Sat, 20 Aug 2016 10:31:34 -0400 Subject: Enable ruby-macho by default. Flips HOMEBREW_RUBY_MACHO to HOMEBREW_NO_RUBY_MACHO. --- Library/Homebrew/os/mac/keg.rb | 2 +- Library/Homebrew/os/mac/pathname.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'Library/Homebrew/os/mac') diff --git a/Library/Homebrew/os/mac/keg.rb b/Library/Homebrew/os/mac/keg.rb index dcda0908b..201c57b50 100644 --- a/Library/Homebrew/os/mac/keg.rb +++ b/Library/Homebrew/os/mac/keg.rb @@ -1,5 +1,5 @@ class Keg - if ENV["HOMEBREW_RUBY_MACHO"] + if !ENV["HOMEBREW_NO_RUBY_MACHO"] require "os/mac/ruby_keg" include RubyKeg else diff --git a/Library/Homebrew/os/mac/pathname.rb b/Library/Homebrew/os/mac/pathname.rb index 87fc72936..b76c4333a 100644 --- a/Library/Homebrew/os/mac/pathname.rb +++ b/Library/Homebrew/os/mac/pathname.rb @@ -1,7 +1,7 @@ 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 -- cgit v1.2.3