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

Collapse All | Expand All

(-)a/bin/ebuild-helpers/prepinfo (-1 / +1 lines)
Lines 24-30 if [[ ! -d ${D}${infodir} ]] ; then Link Here
24
fi
24
fi
25
25
26
find "${D}${infodir}" -type d -print0 | while read -d $'\0' x ; do
26
find "${D}${infodir}" -type d -print0 | while read -d $'\0' x ; do
27
	rm -f "${x}"/dir{,.info}{,.gz,.bz2}
27
	[[ -e ${x}/.keepinfodir ]] || rm -f "${x}"/dir{,.info}{,.gz,.bz2}
28
done
28
done
29
29
30
hasq "${EAPI}" 0 1 2 3 || exit 0
30
hasq "${EAPI}" 0 1 2 3 || exit 0
(-)a/pym/_emerge/main.py (-2 / +2 lines)
Lines 107-113 def chk_updated_info_files(root, infodirs, prev_mtimes, retval): Link Here
107
			if z=='':
107
			if z=='':
108
				continue
108
				continue
109
			inforoot=normpath(root+z)
109
			inforoot=normpath(root+z)
110
			if os.path.isdir(inforoot):
110
			keep_file=os.path.join(inforoot, ".keepinfodir")
111
			if os.path.isdir(inforoot) and not os.path.exists(keep_file):
111
				infomtime = os.stat(inforoot)[stat.ST_MTIME]
112
				infomtime = os.stat(inforoot)[stat.ST_MTIME]
112
				if inforoot not in prev_mtimes or \
113
				if inforoot not in prev_mtimes or \
113
					prev_mtimes[inforoot] != infomtime:
114
					prev_mtimes[inforoot] != infomtime:
114
- 

Return to bug 257260