aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Howell2009-09-03 23:17:02 +0100
committerMax Howell2009-09-03 23:17:02 +0100
commit0543bbccccef052ad7a798ef3c92f67b4f09884d (patch)
tree4da568ea3063358e1bfe0f99bed3cfcfd21f561e
parenta12569699e299d470ec9746d0dc0ae1e9ce940f7 (diff)
downloadbrew-0543bbccccef052ad7a798ef3c92f67b4f09884d.tar.bz2
Fixes Homebrew/homebrew#32 -- Create directory, don't symlink perl5/site_perl
-rw-r--r--Library/Homebrew/keg.rb2
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}