aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2010-07-04 21:07:37 -0700
committerAdam Vandenberg2010-08-07 18:08:51 -0700
commit2a4bc2c00d991234c29630cd2246e5bbaab6399f (patch)
tree0c1c727d97d52579ed026aacce2d74a9b80c0562 /Library
parent04b96580fce3b53c2b4c66db2e3a5bd60abe2e28 (diff)
downloadhomebrew-2a4bc2c00d991234c29630cd2246e5bbaab6399f.tar.bz2
Sort and line up path helpers
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula.rb20
1 files changed, 10 insertions, 10 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index ed958078f..75bddcf15 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -113,16 +113,16 @@ class Formula
HOMEBREW_CELLAR+@name+@version
end
- def bin; prefix+'bin' end
- def sbin; prefix+'sbin' 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 man1; man+'man1' end
- def info; prefix+'share/info' end
- def include; prefix+'include' end
- def share; prefix+'share' end
+ def bin; prefix+'bin' end
+ def doc; prefix+'share/doc'+name end
+ def include; prefix+'include' end
+ def info; prefix+'share/info' end
+ def lib; prefix+'lib' end
+ def libexec; prefix+'libexec' end
+ def man; prefix+'share/man' end
+ def man1; man+'man1' end
+ def sbin; prefix+'sbin' end
+ def share; prefix+'share' end
# configuration needs to be preserved past upgrades
def etc; HOMEBREW_PREFIX+'etc' end