aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/keg.rb7
1 files changed, 1 insertions, 6 deletions
diff --git a/Library/Homebrew/keg.rb b/Library/Homebrew/keg.rb
index 0d9a12cc6..fb6996cdd 100644
--- a/Library/Homebrew/keg.rb
+++ b/Library/Homebrew/keg.rb
@@ -35,12 +35,7 @@ class Keg < Pathname
src.find do |src|
next if src == self
dst=HOMEBREW_PREFIX+src.relative_path_from(self)
-
- # check whether the file to be unlinked is from the current keg first
- if !dst.symlink? || !dst.exist? || src.expand_path != dst.realpath
- next
- end
-
+ next unless dst.symlink?
dst.uninstall_info if dst.to_s =~ INFOFILE_RX and ENV['HOMEBREW_KEEP_INFO']
dst.unlink
dst.parent.rmdir_if_possible