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

(-)eclass/qt4.eclass (-3 / +3 lines)
Lines 54-62 Link Here
54
}
54
}
55
55
56
qt4_pkg_setup() {
56
qt4_pkg_setup() {
57
	for x in ${QT4_BUILT_WITH_USE_CHECK}; do
57
	if [[ -n ${QT4_BUILT_WITH_USE_CHECK} ]] ; then
58
		if ! built_with_use =x11-libs/qt-4* $x; then
58
		if ! built_with_use =x11-libs/qt-4* ${QT4_BUILT_WITH_USE_CHECK} ; then
59
			die "This package requires Qt4 to be built with the '${x}' use flag."
59
			die "This package requires Qt4 to be built with the '${QT4_BUILT_WITH_USE_CHECK}' use flag(s)."
60
		fi
60
		fi
61
	done
61
	done
62
}
62
}

Return to bug 196336