diff options
| author | Mike McQuaid | 2013-07-01 19:01:57 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2013-07-01 19:02:32 +0100 |
| commit | 621c44dbd2e9e1887e2f3feff7868e9501c6ba0a (patch) | |
| tree | 1f6f0ec04b21ddbf2454e24bbd6008c47aa04986 /Library | |
| parent | be9f2d7dea1965a7289e45bb4850ec84f06527c3 (diff) | |
| download | brew-621c44dbd2e9e1887e2f3feff7868e9501c6ba0a.tar.bz2 | |
CLT is just CLT now; not "for Xcode".
References Homebrew/homebrew#17383.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/cmd/doctor.rb | 4 | ||||
| -rw-r--r-- | Library/Homebrew/os/mac/xcode.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/requirements.rb | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb index 49c9a158c..993cb0b05 100644 --- a/Library/Homebrew/cmd/doctor.rb +++ b/Library/Homebrew/cmd/doctor.rb @@ -226,7 +226,7 @@ def __check_clt_up_to_date You should install the Command Line Tools: http://connect.apple.com EOS elsif MacOS::CLT.outdated? then <<-EOS.undent - A newer Command Line Tools for Xcode release is available + A newer Command Line Tools release is available You should install the latest version from: http://connect.apple.com EOS end @@ -268,7 +268,7 @@ def check_cc if MacOS::Xcode.version >= "4.3" then <<-EOS.undent Experimental support for using Xcode without the "Command Line Tools". You have only installed Xcode. If stuff is not building, try installing the - "Command Line Tools for Xcode" package provided by Apple. + "Command Line Tools" package provided by Apple. EOS else 'No compiler found in /usr/bin!' diff --git a/Library/Homebrew/os/mac/xcode.rb b/Library/Homebrew/os/mac/xcode.rb index 202567eb4..334f08f70 100644 --- a/Library/Homebrew/os/mac/xcode.rb +++ b/Library/Homebrew/os/mac/xcode.rb @@ -159,7 +159,7 @@ module MacOS::CLT extend self # This is true if the standard UNIX tools are present in the expected location. For # Mavericks and above this is /Library/Developer/CommandLineTools otherwise it is /usr. # For Xcode < 4.3, this is the standard location. Otherwise, it means that the user has - # installed the "Command Line Tools for Xcode" package. + # installed the "Command Line Tools" package. def installed? (MacOS.dev_tools_path == Pathname.new("#{MacOS::CLT::STANDALONE_PKG_PATH}/usr/bin") \ and File.directory? "#{MacOS::CLT::STANDALONE_PKG_PATH}/usr/include") or diff --git a/Library/Homebrew/requirements.rb b/Library/Homebrew/requirements.rb index 355fad26d..cfec02200 100644 --- a/Library/Homebrew/requirements.rb +++ b/Library/Homebrew/requirements.rb @@ -86,7 +86,7 @@ class CLTDependency < Requirement satisfy(:build_env => false) { MacOS::CLT.installed? } def message; <<-EOS.undent - The Command Line Tools for Xcode are required to compile this software. + The Command Line Tools are required to compile this software. The standalone package can be obtained from http://connect.apple.com, or it can be installed via Xcode's preferences. EOS |
