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

(-)file_not_specified_in_diff (+23 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 [[ "${MULTILIB_WRAPPER_IGNORE}" != "*" ]] ; then
1065
		MULTILIB_WRAPPER_MASK="${MULTILIB_WRAPPER_MASK:-*-config}"
1066
		for mypath in $(echo "${PATH}" | sed -e 's/:/ /g') ; do
1067
			for configscript in "${D}"${mypath}/${MULTILIB_WRAPPER_MASK} ; do
1068
				if [[ -f ${configscript} ]] && \
1069
				 [[ "${MULTILIB_WRAPPER_IGNORE/$(basename "${configscript}")}" == "${MULTILIB_WRAPPER_IGNORE}" ]]; then
1070
					while [[ -L ${configscript} ]] ; do 
1071
						configscript="$(readlink "${configscript}")"
1072
						if [[ "${configscript:0:1}" != "/" ]] ; then
1073
							configscript="${D}${mypath}/${configscript}"
1074
						fi
1075
					done
1076
					if ! [[ -L ${configscript} ]] && \
1077
					[[ "${MULTILIB_WRAPPER_IGNORE/$(basename "${configscript}")}" == "${MULTILIB_WRAPPER_IGNORE}" ]]; then
1078
						generate-config-wrapper "${configscript}" \
1079
						|| die "generating multilib config wrapper file for ${configscript} failed"
1080
					fi
1081
				fi
1082
			done
1083
		done
1084
	fi
1085
	
1064
	prepall
1086
	prepall
1065
	cd "${D}"
1087
	cd "${D}"
1066
1088

Return to bug 118815