From a6c838b08a4a82807c6175181bd3545e639b8807 Mon Sep 17 00:00:00 2001 From: Misty De Meo Date: Fri, 3 Jan 2014 18:24:54 -0800 Subject: [PATCH] default_cc: locate already returns Pathnames --- Library/Homebrew/os/mac.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/os/mac.rb b/Library/Homebrew/os/mac.rb index 24c1b71818..067244c5fc 100644 --- a/Library/Homebrew/os/mac.rb +++ b/Library/Homebrew/os/mac.rb @@ -99,7 +99,7 @@ module OS def default_cc cc = locate 'cc' - Pathname.new(cc).realpath.basename.to_s rescue nil + cc.realpath.basename.to_s rescue nil end def default_compiler