aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2010-03-17 16:50:33 -0700
committerAdam Vandenberg2010-04-06 09:33:39 -0700
commitc59a6381956a1a6408f6b6686476fecc437cca1d (patch)
treed988e8c3913280fef35a942f4cf0e919eb66931d /Library
parentec926a7f5f47c73f2f88a5c01a39ca96d9a01c07 (diff)
downloadbrew-c59a6381956a1a6408f6b6686476fecc437cca1d.tar.bz2
Remove silly concatenation.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index 60865cacc..1bb4889d1 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -118,12 +118,12 @@ class Formula
def bin; prefix+'bin' end
def sbin; prefix+'sbin' end
- def doc; prefix+'share'+'doc'+name end
+ def doc; prefix+'share/doc'+name end
def lib; prefix+'lib' end
def libexec; prefix+'libexec' end
- def man; prefix+'share'+'man' end
+ def man; prefix+'share/man' end
def man1; man+'man1' end
- def info; prefix+'share'+'info' end
+ def info; prefix+'share/info' end
def include; prefix+'include' end
def share; prefix+'share' end