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

(-)dolib (+4 lines)
Lines 5-6 Link Here
5
5
6
if [ -n "$(eval echo \${LIBDIR_${ABI}})" ]; then        
7
	CONF_LIBDIR="$(eval echo \${LIBDIR_${ABI}})"        
8
fi        
9
6
if [ -z "${CONF_LIBDIR}" ]; then
10
if [ -z "${CONF_LIBDIR}" ]; then
(-)ebuild-functions.sh (-2 / +8 lines)
Lines 90-92 econf() { Link Here
90
		# if the ebuild passes in --libdir, they're responsible for the conf_libdir fun.
90
		# if the ebuild passes in --libdir, they're responsible for the conf_libdir fun.
91
		if [ ! -z "${CONF_LIBDIR}" ] && [ "${*/--libdir}" == "$*" ]; then
91
		if [ -n "$(eval echo \${LIBDIR_${ABI}})" ]; then
92
			CONF_LIBDIR="$(eval echo \${LIBDIR_${ABI}})"
93
		fi
94
		if [ -n "${CONF_LIBDIR}" ] && [ "${*/--libdir}" == "$*" ]; then
92
			if [ "${*/--prefix}" == "$*" ]; then
95
			if [ "${*/--prefix}" == "$*" ]; then
Lines 140-142 einstall() Link Here
140
	# CONF_PREFIX is only set if they didn't pass in libdir above
143
	# CONF_PREFIX is only set if they didn't pass in libdir above
141
	if [ ! -z "${CONF_LIBDIR}" ] && [ "${CONF_PREFIX:-unset}" != "unset" ]; then
144
	if [ -n "$(eval echo \${LIBDIR_${ABI}})" ]; then
145
		CONF_LIBDIR="$(eval echo \${LIBDIR_${ABI}})"
146
	fi
147
	if [ -n "${CONF_LIBDIR}" ] && [ "${CONF_PREFIX:-unset}" != "unset" ]; then
142
		EXTRA_EINSTALL="libdir=${D}/${CONF_PREFIX}/${CONF_LIBDIR} ${EXTRA_EINSTALL}"
148
		EXTRA_EINSTALL="libdir=${D}/${CONF_PREFIX}/${CONF_LIBDIR} ${EXTRA_EINSTALL}"
(-)preplib (+4 lines)
Lines 5-6 Link Here
5
5
6
if [ -n "$(eval echo \${LIBDIR_${ABI}})" ]; then                
7
        CONF_LIBDIR="$(eval echo \${LIBDIR_${ABI}})"                
8
fi        
9
6
if [ -z "${CONF_LIBDIR}" ]; then
10
if [ -z "${CONF_LIBDIR}" ]; then

Return to bug 75420