aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Howell2012-02-29 01:28:23 +0000
committerMax Howell2012-02-29 01:28:23 +0000
commit63a8f466a598f17b11c22e8565ae31e809be35d9 (patch)
tree540dfbfb2aa8f3fb76efce6033b3d0ee2171b656
parent9092b0690e643ec04af7c10efd9647c60b841936 (diff)
downloadhomebrew-63a8f466a598f17b11c22e8565ae31e809be35d9.tar.bz2
Play nice with case-sensitive filesystems
-rw-r--r--Library/Homebrew/cmd/--config.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/cmd/--config.rb b/Library/Homebrew/cmd/--config.rb
index 98b943b19..1d74bebf5 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