summarylogtreecommitdiffstats
path: root/python-3.10.patch
diff options
context:
space:
mode:
Diffstat (limited to 'python-3.10.patch')
-rw-r--r--python-3.10.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/python-3.10.patch b/python-3.10.patch
deleted file mode 100644
index 2d1d01fd5f93..000000000000
--- a/python-3.10.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/configure.ac b/configure.ac
-index 990a59db2a..57a187aa11 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -1765,7 +1765,7 @@ then
-
- AC_MSG_CHECKING([for python distutils])
- python_result="`$PYTHON -c 'import distutils;' 2>&1`"
-- if test -z "$python_result" ; then
-+ if test $? -eq 0; then
- python_has_distutils="yes"
- else
- python_has_distutils="no"
-@@ -1886,7 +1886,7 @@ then
-
- AC_MSG_CHECKING([for python3 distutils])
- python3_result="`$PYTHON3 -c 'import distutils;' 2>&1`"
-- if test -z "$python3_result" ; then
-+ if test $? -eq 0 ; then
- python3_has_distutils="yes"
- else
- python3_has_distutils="no"