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

(-)/usr/portage/dev-cpp/tbb/tbb-4.3.20150611.ebuild.old (-6 / +15 lines)
Lines 104-115 Link Here
104
}
104
}
105
105
106
multilib_src_install() {
106
multilib_src_install() {
107
	cd "${BUILD_DIR}_release" || die
107
	local bt
108
	local l
108
	local buildtypes
109
	for l in $(find . -name lib\*.so.\*); do
109
	if use debug ; then
110
		dolib.so ${l}
110
		buildtypes="release debug"
111
		local bl=$(basename ${l})
111
	else
112
		dosym ${bl} /usr/$(get_libdir)/${bl%.*}
112
		buildtypes="release"
113
	fi
114
	for bt in ${buildtypes}; do
115
		cd "${BUILD_DIR}_${bt}" || die
116
		local l
117
		for l in $(find . -name lib\*.so.\*); do
118
			dolib.so ${l}
119
			local bl=$(basename ${l})
120
			dosym ${bl} /usr/$(get_libdir)/${bl%.*}
121
		done
113
	done
122
	done
114
123
115
	cd "${BUILD_DIR}" || die
124
	cd "${BUILD_DIR}" || die

Return to bug 564678