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

(-)ebuild.sh (+10 lines)
Lines 256-261 Link Here
256
	echo "!!! ${*:-(no error message)}" >&2
256
	echo "!!! ${*:-(no error message)}" >&2
257
	echo "!!! If you need support, post the topmost build error, and the call stack if relevant." >&2
257
	echo "!!! If you need support, post the topmost build error, and the call stack if relevant." >&2
258
	echo >&2
258
	echo >&2
259
	if [ -n "${ECLASS_SOURCES}" ] ; then
260
		echo "This ebuild used the following eclasses from overlays:"
261
		for x in ${ECLASS_SOURCES} ; do
262
			echo "${x}"
263
		done
264
	fi
265
259
	if [ "${EBUILD_PHASE/depend}" == "${EBUILD_PHASE}" ]; then
266
	if [ "${EBUILD_PHASE/depend}" == "${EBUILD_PHASE}" ]; then
260
		local x
267
		local x
261
		for x in $EBUILD_DEATH_HOOKS; do
268
		for x in $EBUILD_DEATH_HOOKS; do
Lines 1181-1186 Link Here
1181
				olocation="${overlay}/eclass/${1}.eclass"
1188
				olocation="${overlay}/eclass/${1}.eclass"
1182
				if [ -e "$olocation" ]; then
1189
				if [ -e "$olocation" ]; then
1183
					location="${olocation}"
1190
					location="${olocation}"
1191
					if ! hasq "${location}" "${ECLASS_SOURCES}" ; then
1192
						ECLASS_SOURCES="${ECLASS_SOURCES} ${location}"
1193
					fi
1184
					debug-print "  eclass exists: ${location}"
1194
					debug-print "  eclass exists: ${location}"
1185
				fi
1195
				fi
1186
			done
1196
			done

Return to bug 148603