Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 642672 | Differences between
and this patch

Collapse All | Expand All

(-)a/pym/portage/util/_dyn_libs/PreservedLibsRegistry.py (-2 / +1 lines)
Lines 227-233 class PreservedLibsRegistry(object): Link Here
227
			# removed by _remove_preserved_libs, it calls pruneNonExisting
227
			# removed by _remove_preserved_libs, it calls pruneNonExisting
228
			# which eliminates the irrelevant symlink from the registry here.
228
			# which eliminates the irrelevant symlink from the registry here.
229
			for f, target in symlinks.items():
229
			for f, target in symlinks.items():
230
				if os.path.join(os.path.dirname(f), target) in hardlinks:
230
				if portage.abssymlink(f, target=target) in hardlinks:
231
					paths.append(f)
231
					paths.append(f)
232
232
233
			if len(paths) > 0:
233
			if len(paths) > 0:
234
- 

Return to bug 642672