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

(-)boost-build-1.34.1.ebuild (-1 / +5 lines)
Lines 60-66 Link Here
60
	#    and link targets to make it use the LDFLAGS var, or
60
	#    and link targets to make it use the LDFLAGS var, or
61
	# b) a simple dirty workaround by injecting the LDFLAGS in the LIBS env var
61
	# b) a simple dirty workaround by injecting the LDFLAGS in the LIBS env var
62
	#    (which should not be set by us).
62
	#    (which should not be set by us).
63
	LIBS="${LDFLAGS}" CC=$(tc-getCC) ./build.sh ${toolset} $(use_with python) || die "building bjam failed"
63
	if [[ "${LDFLAGS}" != "" ]] ; then
64
		LIBS="${LDFLAGS}" CC=$(tc-getCC) ./build.sh ${toolset} $(use_with python) || die "building bjam failed"
65
	else
66
		CC=$(tc-getCC) ./build.sh ${toolset} $(use_with python) || die "building bjam failed"
67
	fi
64
}
68
}
65
69
66
src_install() {
70
src_install() {

Return to bug 210029