Skip to content
Snippets Groups Projects
Commit 24e27465 authored by Jack Nagel's avatar Jack Nagel
Browse files

Remove comments that no longer reflect any adjacent code

parent c208afe2
No related branches found
No related tags found
No related merge requests found
......@@ -58,13 +58,10 @@ module OS
@dev_tools_path ||= if tools_in_prefix? CLT::MAVERICKS_PKG_PATH
Pathname.new "#{CLT::MAVERICKS_PKG_PATH}/usr/bin"
elsif tools_in_prefix? "/"
# probably a safe enough assumption (the unix way)
Pathname.new "/usr/bin"
elsif not (make_path = `/usr/bin/xcrun -find make 2>/dev/null`).empty?
# Note that the exit status of system "xcrun foo" isn't always accurate
Pathname.new(make_path.chomp).dirname
elsif File.exist? "#{Xcode.prefix}/usr/bin/make"
# cc stopped existing with Xcode 4.3, there are c89 and c99 options though
Pathname.new "#{Xcode.prefix}/usr/bin"
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment