From fb9b263bc3b35f0b8735c7c2495d75c0cab43a34 Mon Sep 17 00:00:00 2001 From: Max Howell Date: Wed, 29 Feb 2012 01:28:23 +0000 Subject: [PATCH] Play nice with case-sensitive filesystems --- Library/Homebrew/cmd/--config.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Library/Homebrew/cmd/--config.rb b/Library/Homebrew/cmd/--config.rb index 98b943b195..1d74bebf59 100644 --- a/Library/Homebrew/cmd/--config.rb +++ b/Library/Homebrew/cmd/--config.rb @@ -38,9 +38,9 @@ module Homebrew extend self def describe_x11 return "N/A" unless x11_installed? - return case x11_path = Pathname.new("/usr/x11").realpath.to_s - when "/usr/x11" then "/usr/x11" - else "/usr/x11 => #{x11_path}" + return case x11_path = Pathname.new("/usr/X11").realpath.to_s + when "/usr/X11" then "/usr/X11" + else "/usr/X11 => #{x11_path}" end end