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
commit41e8245534854bb273dedc49aeda4af7b60c1aa4 (patch)
tree8c34e9bf1931683ee38e42a643dfe8e8dd62636f /Library
parent696e49e87a2b50639ab9e7fc983fca60bce0bfec (diff)
downloadbrew-41e8245534854bb273dedc49aeda4af7b60c1aa4.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