Remove silly concatenation.

This commit is contained in:
Adam Vandenberg 2010-03-17 16:50:33 -07:00
parent ec926a7f5f
commit c59a638195

View File

@ -118,12 +118,12 @@ class Formula
def bin; prefix+'bin' end def bin; prefix+'bin' end
def sbin; prefix+'sbin' 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 lib; prefix+'lib' end
def libexec; prefix+'libexec' end def libexec; prefix+'libexec' end
def man; prefix+'share'+'man' end def man; prefix+'share/man' end
def man1; man+'man1' end def man1; man+'man1' end
def info; prefix+'share'+'info' end def info; prefix+'share/info' end
def include; prefix+'include' end def include; prefix+'include' end
def share; prefix+'share' end def share; prefix+'share' end