From ffd6e7f34043c70402bd28a35e998049ff890a07 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Mon, 3 Sep 2012 18:13:39 -0500 Subject: [PATCH] Fix typo in MacOS.sdk_path /cc @adamv Signed-off-by: Jack Nagel --- Library/Homebrew/macos.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/macos.rb b/Library/Homebrew/macos.rb index 13f940cecd..a58f980b04 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