aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike McQuaid2017-01-23 21:22:54 +0000
committerMike McQuaid2017-01-23 21:22:54 +0000
commit50c1fea4ea9ca8067e194db5918fbf5a7f5c3ca1 (patch)
tree36544579fc1bef6e411a4eba74cd63b61c51b69d
parentda54f39556b0cee0014db0deb039bb0569ebb9bb (diff)
downloadbrew-50c1fea4ea9ca8067e194db5918fbf5a7f5c3ca1.tar.bz2
xcode: reduce minimum CLT version.
This should be 1.0.0 to be nicer to 10.7 users. Fixes #1893.
-rw-r--r--Library/Homebrew/os/mac/xcode.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/os/mac/xcode.rb b/Library/Homebrew/os/mac/xcode.rb
index e85f21c63..aa4504a17 100644
--- a/Library/Homebrew/os/mac/xcode.rb
+++ b/Library/Homebrew/os/mac/xcode.rb
@@ -226,7 +226,7 @@ module OS
def minimum_version
case MacOS.version
when "10.12" then "8.0.0"
- else "4.0.0"
+ else "1.0.0"
end
end