diff --git a/Library/Homebrew/blacklist.rb b/Library/Homebrew/blacklist.rb index e3077c59a3..9dea721b87 100644 --- a/Library/Homebrew/blacklist.rb +++ b/Library/Homebrew/blacklist.rb @@ -37,7 +37,7 @@ def blacklisted? name "lzma is now part of the xz formula." when 'xcode' then <<-EOS.undent Xcode can be installed via the App Store (on Lion or newer), or from: - http://connect.apple.com/ + https://developer.apple.com/downloads/ EOS when 'gtest', 'googletest', 'google-test' then <<-EOS.undent Installing gtest system-wide is not recommended; it should be vendored diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb index c87d4ab10d..c5fa9fe0ed 100644 --- a/Library/Homebrew/cmd/doctor.rb +++ b/Library/Homebrew/cmd/doctor.rb @@ -223,11 +223,13 @@ end def __check_clt_up_to_date if not MacOS::CLT.installed? then <<-EOS.undent No developer tools installed - You should install the Command Line Tools: http://connect.apple.com + You should install the Command Line Tools: + https://developer.apple.com/downloads/ EOS elsif MacOS::CLT.outdated? then <<-EOS.undent A newer Command Line Tools release is available - You should install the latest version from: http://connect.apple.com + You should install the latest version from: + http://connect.apple.com EOS end end diff --git a/Library/Homebrew/requirements.rb b/Library/Homebrew/requirements.rb index 8dbcee0e26..8e2472b0fb 100644 --- a/Library/Homebrew/requirements.rb +++ b/Library/Homebrew/requirements.rb @@ -60,7 +60,8 @@ class CLTDependency < Requirement def message; <<-EOS.undent The Command Line Tools are required to compile this software. - The standalone package can be obtained from http://connect.apple.com, + The standalone package can be obtained from + https://developer.apple.com/downloads/, or it can be installed via Xcode's preferences. EOS end