From dd267937f5dbfbe6d353ffb95ac5f0dafde533fa Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20G=C3=B3rny?= Date: Sat, 12 Dec 2015 13:40:41 +0100 Subject: [PATCH] python.eclass: Remove outdated/broken sanity checks --- eclass/python.eclass | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/eclass/python.eclass b/eclass/python.eclass index 592119fa7993..7627214ff940 100644 --- a/eclass/python.eclass +++ b/eclass/python.eclass @@ -345,19 +345,7 @@ _python_initialize_prefix_variables() { unset PYTHON_SANITY_CHECKS_EXECUTED PYTHON_SKIP_SANITY_CHECKS _python_initial_sanity_checks() { - if [[ "$(declare -p PYTHON_SANITY_CHECKS_EXECUTED 2> /dev/null)" != "declare -- PYTHON_SANITY_CHECKS_EXECUTED="* || " ${FUNCNAME[@]:1} " =~ " "(python_set_active_version|python_pkg_setup)" " && -z "${PYTHON_SKIP_SANITY_CHECKS}" ]]; then - # Ensure that /usr/bin/python and /usr/bin/python-config are valid. - if [[ "$(readlink "${EPREFIX}/usr/bin/python")" != "python-wrapper" ]]; then - eerror "'${EPREFIX}/usr/bin/python' is not a valid symlink." - eerror "Use \`eselect python set \${python_interpreter}\` to fix this problem." - die "'${EPREFIX}/usr/bin/python' is not a valid symlink" - fi - if [[ "$(<"${EPREFIX}/usr/bin/python-config")" != *"Gentoo python-config wrapper script"* ]]; then - eerror "'${EPREFIX}/usr/bin/python-config' is not a valid script" - eerror "Use \`eselect python set \${python_interpreter}\` to fix this problem." - die "'${EPREFIX}/usr/bin/python-config' is not a valid script" - fi - fi + : } _python_final_sanity_checks() { -- 2.26.2