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

Collapse All | Expand All

(-)a/bin/isolated-functions.sh (-2 / +8 lines)
Lines 525-531 hasv() { Link Here
525
}
525
}
526
526
527
has() {
527
has() {
528
	[[ " ${*:2} " == *" $1 "* ]]
528
	local needle=$1
529
	shift
530
531
	local x
532
	for x in "$@"; do
533
		[[ ${x} == ${needle} ]] && return 0
534
	done
535
	return 1
529
}
536
}
530
537
531
# @FUNCTION: save_ebuild_env
538
# @FUNCTION: save_ebuild_env
532
- 

Return to bug 374791