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

(-)multilib-minimal.eclass (-2 / +2 lines)
Lines 114-121 Link Here
114
			[[ -s "${d}" ]] && dodoc "${d}"
114
			[[ -s "${d}" ]] && dodoc "${d}"
115
		done
115
		done
116
	elif [[ $(declare -p DOCS) == "declare -a "* ]] ; then
116
	elif [[ $(declare -p DOCS) == "declare -a "* ]] ; then
117
		dodoc "${DOCS[@]}"
117
		[[ ${#DOCS[@]} -eq 0 ]] || dodoc "${DOCS[@]}"
118
	else
118
	else
119
		dodoc ${DOCS}
119
		[[ -z ${DOCS} ]] || dodoc ${DOCS}
120
	fi
120
	fi
121
}
121
}

Return to bug 480892