diff options
| author | Max Howell | 2009-08-23 19:05:42 +0100 |
|---|---|---|
| committer | Max Howell | 2009-08-24 01:04:54 +0100 |
| commit | 545ea19b44f2f9140222be91c5374ff372e7aa9a (patch) | |
| tree | 41a65d4b0acdedc6a21b7559092f24122535e183 | |
| parent | 3f8c2a8a4a6f7eae3198b0f61534493c2db90943 (diff) | |
| download | homebrew-545ea19b44f2f9140222be91c5374ff372e7aa9a.tar.bz2 | |
Don't symlink directories into bin
| -rw-r--r-- | Library/Homebrew/keg.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/keg.rb b/Library/Homebrew/keg.rb index 781062841..8ba55f5ee 100644 --- a/Library/Homebrew/keg.rb +++ b/Library/Homebrew/keg.rb @@ -37,7 +37,7 @@ class Keg <Pathname # yeah indeed, you have to force anything you need in the main tree into # these dirs REMEMBER that *NOT* everything needs to be in the main tree link_dir('etc') {:mkpath} - link_dir('bin') {:link} + link_dir('bin') {:skip} link_dir('sbin') {:link} link_dir('lib') {|path| :mkpath if %w[pkgconfig php perl5].include? path.to_s} link_dir('include') {:link} |
