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

Collapse All | Expand All

(-)bin/ebuild.sh (+14 lines)
Lines 1061-1066 Link Here
1061
	export PWORKDIR="$WORKDIR"
1060
	export PWORKDIR="$WORKDIR"
1062
	src_install
1061
	src_install
1063
	#|| abort_install "fail"
1062
	#|| abort_install "fail"
1063
	
1064
	if [[ "${NO_MULTILIB_WRAPPER}" != "*" ]] ; then
1065
		MULTILIB_WRAPPER_MASK="${MULTILIB_WRAPPER_MASK:-/usr/bin/*-config}"
1066
		for configscript in "${D}"${MULTILIB_WRAPPER_MASK} ; do
1067
			# we need -f && ! -L as it would install \*-config otherwise, causing
1068
			# an rm /usr/bin/*-config when unmerging
1069
			if [[ -f ${configscript} ]] && ! [[ -L ${configscript} ]] && \
1070
				[[ "${NO_MULTILIB_WRAPPER/$(basename "${configscript}")}" == "${NO_MULTILIB_WRAPPER}" ]] ; then
1071
				generate-config-wrapper "${configscript}" \
1072
					|| die "generating multilib config wrapper file for ${configscript} failed"
1073
			fi
1074
		done
1075
	fi
1076
	
1064
	prepall
1077
	prepall
1065
	cd "${D}"
1078
	cd "${D}"
1066
1079

Return to bug 118815