aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorJack Nagel2012-09-03 18:13:39 -0500
committerJack Nagel2012-09-03 18:14:30 -0500
commitffd6e7f34043c70402bd28a35e998049ff890a07 (patch)
tree345cb488cbdb8e361eac13efc4836311bb80c808 /Library/Homebrew
parent896ccc45f42cbc5ed90b946ac740d0462783f6f0 (diff)
downloadbrew-ffd6e7f34043c70402bd28a35e998049ff890a07.tar.bz2
Fix typo in MacOS.sdk_path
/cc @adamv Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/macos.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/macos.rb b/Library/Homebrew/macos.rb
index 13f940cec..a58f980b0 100644
--- a/Library/Homebrew/macos.rb
+++ b/Library/Homebrew/macos.rb
@@ -74,7 +74,7 @@ module MacOS extend self
# Xcode.prefix is pretty smart, so lets look inside to find the sdk
opts << "#{Xcode.prefix}/Platforms/MacOSX.platform/Developer/SDKs/MacOSX#{v}.sdk"
# Xcode < 4.3 style
- opts << "/Developer/SDKs/MacOS#{v}.sdk"
+ opts << "/Developer/SDKs/MacOSX#{v}.sdk"
opts.map{|a| Pathname.new(a) }.detect { |p| p.directory? }
end
end