Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 568902
Collapse All | Expand All

(-)a/pym/gentoolkit/revdep_rebuild/analyse.py (-3 / +7 lines)
Lines 320-328 def analyse(settings, logger, libraries=None, la_libraries=None, Link Here
320
		stime = current_milli_time()
320
		stime = current_milli_time()
321
		logger.info(green(' * ') +
321
		logger.info(green(' * ') +
322
			bold('Collecting dynamic linking informations'))
322
			bold('Collecting dynamic linking informations'))
323
		all_masks = masked_dirs.copy()
324
		all_masks.update(masked_files)
325
		logger.debug("\tall_masks:")
326
		for x in sorted(all_masks):
327
			logger.debug('\t\t%s' % (x))
328
323
		libraries, la_libraries, libraries_links = \
329
		libraries, la_libraries, libraries_links = \
324
			collect_libraries_from_dir(lib_dirs, masked_dirs, logger)
330
			collect_libraries_from_dir(lib_dirs, all_masks, logger)
325
		binaries = collect_binaries_from_dir(bin_dirs, masked_dirs, logger)
326
		ftime = current_milli_time()
331
		ftime = current_milli_time()
327
		logger.debug('\ttime to complete task: %d milliseconds' % (ftime-stime))
332
		logger.debug('\ttime to complete task: %d milliseconds' % (ftime-stime))
328
333
329
- 

Return to bug 568902