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

Collapse All | Expand All

(-)ebuild.sh (+10 lines)
Lines 1075-1082 dyn_install() { Link Here
1075
	if [ -f "${D}/usr/share/info/dir.gz" ]; then
1288
	if [ -f "${D}/usr/share/info/dir.gz" ]; then
1076
		rm -f "${D}/usr/share/info/dir.gz"
1289
		rm -f "${D}/usr/share/info/dir.gz"
1077
	fi
1290
	fi
1078
1291
1292
	if hasq multilib-strict ${FEATURES} && [ -x /usr/bin/file -a -x /usr/bin/find -a \
1293
	     -n "${MULTILIB_STRICT_DIRS}" -a -n "${MULTILIB_STRICT_DENY}" ]; then
1294
		for dir in ${MULTILIB_STRICT_DIRS}; do
1295
			[ -d "${D}/${dir}" ] || continue
1296
			for file in $(find ${D}/${dir} -type f); do
1297
				file ${file} | egrep -q "${MULTILIB_STRICT_DENY}" && die "File ${file} matches a file type that is not allowed in ${dir}"
1298
			done
1299
		done
1300
	fi
1301
1079
	touch "${BUILDDIR}/.installed"
1302
	touch "${BUILDDIR}/.installed"
1080
	echo ">>> Completed installing ${PF} into ${D}"
1303
	echo ">>> Completed installing ${PF} into ${D}"
1081
	echo
1304
	echo
1082
	cd ${BUILDDIR}
1305
	cd ${BUILDDIR}

Return to bug 75420