aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/os
diff options
context:
space:
mode:
authorMike McQuaid2017-05-07 17:31:09 +0100
committerGitHub2017-05-07 17:31:09 +0100
commit0d5956948e597efd4186fbc590fa664f9ed6f429 (patch)
treec7f61167ec6e0599a16a80986acafd2da1938b0b /Library/Homebrew/os
parent8d948e4b0b55912c592d34cb5ea83c649b1f9d5e (diff)
parent57db2e539eaa5fbae351963265312bd24ed08f6b (diff)
downloadbrew-0d5956948e597efd4186fbc590fa664f9ed6f429.tar.bz2
Merge pull request #2606 from MikeMcQuaid/revert-vendor-gems
Revert gem vendoring experiment.
Diffstat (limited to 'Library/Homebrew/os')
-rw-r--r--Library/Homebrew/os/mac/mach.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/Library/Homebrew/os/mac/mach.rb b/Library/Homebrew/os/mac/mach.rb
index 416183f68..9b53c4979 100644
--- a/Library/Homebrew/os/mac/mach.rb
+++ b/Library/Homebrew/os/mac/mach.rb
@@ -1,11 +1,10 @@
+require "vendor/macho/macho"
require "os/mac/architecture_list"
module MachOShim
# @private
def macho
@macho ||= begin
- require "macho"
-
MachO.open(to_s)
end
end
@@ -13,8 +12,6 @@ module MachOShim
# @private
def mach_data
@mach_data ||= begin
- require "macho"
-
machos = []
mach_data = []