commit: dd267937f5dbfbe6d353ffb95ac5f0dafde533fa
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 12 12:40:41 2015 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 12 12:58:57 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd267937
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 592119f..7627214 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() {