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

Collapse All | Expand All

(-)a/pym/gentoolkit/revdep_rebuild/analyse.py (-2 / +1 lines)
Lines 247-253 class LibCheck(object): Link Here
247
247
248
	def is_masked(self, filename):
248
	def is_masked(self, filename):
249
		for m in self.masked_dirs:
249
		for m in self.masked_dirs:
250
			t = m.split(os.sep)
250
			t = os.path.realpath(m).split(os.sep)
251
			f = filename.split(os.sep)
251
			f = filename.split(os.sep)
252
			# self.logger.debug("\tis_masked(); %s, %s" % (t, f))
252
			# self.logger.debug("\tis_masked(); %s, %s" % (t, f))
253
			if t == f[:min(len(t), len(f))]:
253
			if t == f[:min(len(t), len(f))]:
254
- 

Return to bug 593672