aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index d6b9826ef..66633a025 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -88,7 +88,6 @@ class Formula
def bin; prefix+'bin' end
def sbin; prefix+'sbin' end
def doc; prefix+'share'+'doc'+name end
- def etc; prefix+'etc' end
def lib; prefix+'lib' end
def libexec; prefix+'libexec' end
def man; prefix+'share'+'man' end
@@ -96,7 +95,10 @@ class Formula
def info; prefix+'share'+'info' end
def include; prefix+'include' end
def share; prefix+'share' end
+
+ # generally we don't want these to be inside the keg
def var; HOMEBREW_PREFIX+'var' end
+ def etc; HOMEBREW_PREFIX+'etc' end
# reimplement if we don't autodetect the download strategy you require
def download_strategy