From e87341169454d4ae3b74809e680071126b8bcc30 Mon Sep 17 00:00:00 2001 From: Charlie Sharpsteen Date: Fri, 24 Aug 2012 13:28:36 -0700 Subject: [PATCH] XCodeDependency: Clarify that Xcode.app is needed Clarify the error message arising from XCodeDependency so that users know XCode.app is needed and that just installing the CLT does not count as "installing XCode". --- Library/Homebrew/dependencies.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/dependencies.rb b/Library/Homebrew/dependencies.rb index a8ff1a8ada..3ac816a50e 100644 --- a/Library/Homebrew/dependencies.rb +++ b/Library/Homebrew/dependencies.rb @@ -333,7 +333,8 @@ class XCodeDependency < Requirement end def message; <<-EOS.undent - XCode is required to compile this software. + A full installation of XCode.app is required to compile this software. + Installing just the Command Line Tools is not sufficent. EOS end end