diff options
| author | Max Howell | 2009-09-03 23:17:02 +0100 |
|---|---|---|
| committer | Max Howell | 2009-09-03 23:17:02 +0100 |
| commit | 0543bbccccef052ad7a798ef3c92f67b4f09884d (patch) | |
| tree | 4da568ea3063358e1bfe0f99bed3cfcfd21f561e | |
| parent | a12569699e299d470ec9746d0dc0ae1e9ce940f7 (diff) | |
| download | brew-0543bbccccef052ad7a798ef3c92f67b4f09884d.tar.bz2 | |
Fixes Homebrew/homebrew#32 -- Create directory, don't symlink perl5/site_perl
| -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 67630a1d3..1ccbacb4a 100644 --- a/Library/Homebrew/keg.rb +++ b/Library/Homebrew/keg.rb @@ -58,7 +58,7 @@ class Keg <Pathname link_dir('etc') {:mkpath} link_dir('bin') {:skip} link_dir('sbin') {:link} - link_dir('lib') {|path| :mkpath if %w[pkgconfig php perl5].include? path.to_s} + link_dir('lib') {|path| :mkpath if %w[pkgconfig php perl5 perl5/site_perl].include? path.to_s} link_dir('include') {:link} link_dir('share') {|path| :mkpath if mkpaths.include? path.to_s} |
