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

(-)a/genkernel (-2 / +1 lines)
Lines 27-34 Link Here
27
# /etc/genkernel.conf if nobody has specified one.
27
# /etc/genkernel.conf if nobody has specified one.
28
28
29
# NOTE: We are look for --config=... in a way that doesn't modify $@ since we access that again, later
29
# NOTE: We are look for --config=... in a way that doesn't modify $@ since we access that again, later
30
for (( i=1; i<=$# ; i=i+1 )); do
30
for arg in "${@}"; do
31
	eval arg="\$$i"
32
	[[ "${arg}" = --config=* ]] && CMD_GK_CONFIG=`parse_opt "${arg}"`
31
	[[ "${arg}" = --config=* ]] && CMD_GK_CONFIG=`parse_opt "${arg}"`
33
done
32
done
34
33

Return to bug 558188