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

(-)multilib-minimal.eclass (-13 / +2 lines)
Lines 30-36 Link Here
30
esac
30
esac
31
31
32
32
33
inherit multilib-build
33
inherit eutils multilib-build
34
34
35
EXPORT_FUNCTIONS src_configure src_compile src_test src_install
35
EXPORT_FUNCTIONS src_configure src_compile src_test src_install
36
36
Lines 104-121 Link Here
104
104
105
	if declare -f multilib_src_install_all >/dev/null ; then
105
	if declare -f multilib_src_install_all >/dev/null ; then
106
		multilib_src_install_all
106
		multilib_src_install_all
107
	fi
108
109
	# this is synced with __eapi4_src_install
110
	if ! declare -p DOCS &>/dev/null ; then
111
		local d
112
		for d in README* ChangeLog AUTHORS NEWS TODO CHANGES \
113
				THANKS BUGS FAQ CREDITS CHANGELOG ; do
114
			[[ -s "${d}" ]] && dodoc "${d}"
115
		done
116
	elif [[ $(declare -p DOCS) == "declare -a "* ]] ; then
117
		dodoc "${DOCS[@]}"
118
	else
107
	else
119
		dodoc ${DOCS}
108
		einstalldocs
120
	fi
109
	fi
121
}
110
}

Return to bug 483304