diff options
| author | Max Howell | 2011-06-16 15:08:27 +0100 |
|---|---|---|
| committer | Max Howell | 2011-06-17 09:30:25 +0100 |
| commit | eb12255f838374e379d90ecdc088fbf8246b5eec (patch) | |
| tree | 4e44c1a3d16b81297da3d725c496609bb7a3e87d /Library | |
| parent | a97f00107537742b709847e8504d65ce6bd92de6 (diff) | |
| download | homebrew-eb12255f838374e379d90ecdc088fbf8246b5eec.tar.bz2 | |
Fix make_relative_symlink when names differ
Before we would always make the symlink itself have a basename the same as what it pointed to.
I don’t think this breaks any of the other usages as they were working by coincidence.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/extend/pathname.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/pathname.rb b/Library/Homebrew/extend/pathname.rb index 54435aa37..d44f59968 100644 --- a/Library/Homebrew/extend/pathname.rb +++ b/Library/Homebrew/extend/pathname.rb @@ -230,7 +230,7 @@ class Pathname Dir.chdir self.dirname do # TODO use Ruby function so we get exceptions # NOTE Ruby functions may work, but I had a lot of problems - rv = system 'ln', '-sf', src.relative_path_from(self.dirname) + rv = system 'ln', '-sf', src.relative_path_from(self.dirname), self.basename unless rv and $? == 0 raise <<-EOS.undent Could not create symlink #{to_s}. |
