aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/install.rb
diff options
context:
space:
mode:
authorWilliam Woodruff2015-06-02 13:07:05 -0400
committerMisty De Meo2015-08-21 10:56:46 -0700
commit4d65b817ec04e8e216f6d371a6f5d691f5677dca (patch)
treee101406a64fc6a675dc5dc18d92e72add8b8ba5c /Library/Homebrew/cmd/install.rb
parentdcc394c3f748946eefd9b80da003cd5f1abb5fb7 (diff)
downloadbrew-4d65b817ec04e8e216f6d371a6f5d691f5677dca.tar.bz2
Install: remove check_for_bad_install_name_tool
Until it can be adapted to not call otool on systems w/o XCode/CLT
Diffstat (limited to 'Library/Homebrew/cmd/install.rb')
-rw-r--r--Library/Homebrew/cmd/install.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb
index 7091b9bfc..b2f1f195d 100644
--- a/Library/Homebrew/cmd/install.rb
+++ b/Library/Homebrew/cmd/install.rb
@@ -122,13 +122,15 @@ module Homebrew
end
def check_xcode
+ # TODO: reinstate check_for_bad_install_name_tool
+ # currently check_for_bad_install_name_tool fails because it tries to call
+ # the /usr/bin/otool stub program on systems without XCode/CLT
checks = Checks.new
%w[
check_for_unsupported_osx
check_for_installed_developer_tools
check_xcode_license_approved
check_for_osx_gcc_installer
- check_for_bad_install_name_tool
].each do |check|
out = checks.send(check)
opoo out unless out.nil?