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

Collapse All | Expand All

(-)libtool.eclass (-2 / +12 lines)
Lines 113-119 Link Here
113
	local do_uclibc="yes"
113
	local do_uclibc="yes"
114
	local deptoremove=
114
	local deptoremove=
115
	local do_shallow="no"
115
	local do_shallow="no"
116
	local elt_patches="install-sh ltmain portage relink max_cmd_len sed test tmp cross as-needed"
116
	local elt_patches="install-sh ltmain portage relink max_cmd_len sed test tmp cross as-needed ltdl-la-conf"
117
117
118
	for x in "$@" ; do
118
	for x in "$@" ; do
119
		case ${x} in
119
		case ${x} in
Lines 176-182 Link Here
176
		set -- $(find "${S}" -name ltmain.sh -printf '%h ')
176
		set -- $(find "${S}" -name ltmain.sh -printf '%h ')
177
	fi
177
	fi
178
178
179
	local d p
179
	local d p updir
180
	for d in "$@" ; do
180
	for d in "$@" ; do
181
		export ELT_APPLIED_PATCHES=
181
		export ELT_APPLIED_PATCHES=
182
182
Lines 329-334 Link Here
329
						ret=$?
329
						ret=$?
330
					fi
330
					fi
331
					;;
331
					;;
332
				*-conf)
333
					ret=0
334
					for updir in "" /.. /../..; do
335
						if [[ -e ${d}${updir}/configure ]]; then
336
							ELT_walk_patches "${d}${updir}/configure" "${p}"
337
							ret=$?
338
							[[ ${ret} -ne 0 ]] && break
339
						fi
340
					done
341
					;;
332
				*)
342
				*)
333
					ELT_walk_patches "${d}/ltmain.sh" "${p}"
343
					ELT_walk_patches "${d}/ltmain.sh" "${p}"
334
					ret=$?
344
					ret=$?

Return to bug 293921