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

(-)a/eclass/autotools-utils.eclass (-1 / +9 lines)
Lines 428-433 autotools-utils_src_install() { Link Here
428
	# XXX: support installing them from builddir as well?
428
	# XXX: support installing them from builddir as well?
429
	if [[ ${DOCS} ]]; then
429
	if [[ ${DOCS} ]]; then
430
		dodoc "${DOCS[@]}" || die "dodoc failed"
430
		dodoc "${DOCS[@]}" || die "dodoc failed"
431
	else
432
		local f
433
		# same list as in PMS
434
		for f in README* ChangeLog AUTHORS NEWS TODO CHANGES \
435
				THANKS BUGS FAQ CREDITS CHANGELOG; do
436
			if [[ -s ${f} ]]; then
437
				dodoc "${f}" || die "(default) dodoc ${f} failed"
438
			fi
439
		done
431
	fi
440
	fi
432
	if [[ ${HTML_DOCS} ]]; then
441
	if [[ ${HTML_DOCS} ]]; then
433
		dohtml -r "${HTML_DOCS[@]}" || die "dohtml failed"
442
		dohtml -r "${HTML_DOCS[@]}" || die "dohtml failed"
434
- 

Return to bug 397659