aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2010-06-29 13:53:57 -0700
committerAdam Vandenberg2010-07-08 22:41:51 -0700
commit13d2b3baee19a340ddc550ea8714676604672de3 (patch)
tree8eb2e0bb9ba6e49d43f1ac153f3e1f8a87a49ab5 /Library
parent8deec24d872170aaca5c9143db081d4eb9b02eb2 (diff)
downloadhomebrew-13d2b3baee19a340ddc550ea8714676604672de3.tar.bz2
Clarify cellar comment
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/global.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/Library/Homebrew/global.rb b/Library/Homebrew/global.rb
index 31b237bb1..d56ec195e 100644
--- a/Library/Homebrew/global.rb
+++ b/Library/Homebrew/global.rb
@@ -23,9 +23,8 @@ end
HOMEBREW_PREFIX = Pathname.new(HOMEBREW_BREW_FILE).dirname.parent # Where we link under
HOMEBREW_REPOSITORY = Pathname.new(HOMEBREW_BREW_FILE).realpath.dirname.parent # Where .git is found
-# Where should be build to?
-# If /usr/local/Cellar exists, as a symlink or real folder, use that.
-# Otherwise, build into a Cellar in the Repo. folder.
+# Where we store built products; /usr/local/Cellar if it exists,
+# otherwise a Cellar relative to the Repository.
if (HOMEBREW_PREFIX+'Cellar').exist?
HOMEBREW_CELLAR = HOMEBREW_PREFIX+'Cellar'
else