mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 17:09:10 -07:00
dev-libs/libxmlb: fix python_check_deps again
Thanks to Ionen for pointing out this will (obviously) return 0 unconditionally... Bug: https://bugs.gentoo.org/941965 Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
@@ -42,8 +42,11 @@ BDEPEND="
|
||||
"
|
||||
|
||||
python_check_deps() {
|
||||
use introspection && python_has_version -b "dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
return 0
|
||||
if use introspection ; then
|
||||
python_has_version -b "dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
else
|
||||
return 0
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_setup() {
|
||||
|
||||
Reference in New Issue
Block a user