Resolves: #1948437 - fix FTBFS due of distutils issue
This commit is contained in:
parent
6ae83e6e9b
commit
4a7c04fd69
3 changed files with 257 additions and 1 deletions
12
OpenIPMI-ax-python.patch
Normal file
12
OpenIPMI-ax-python.patch
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
diff -urNp a/m4/ax_python_devel.m4 b/m4/ax_python_devel.m4
|
||||
--- a/m4/ax_python_devel.m4 2021-08-02 13:15:04.122972905 +0200
|
||||
+++ b/m4/ax_python_devel.m4 2021-08-02 13:16:17.407749535 +0200
|
||||
@@ -143,7 +143,7 @@ variable to configure. See ``configure -
|
||||
#
|
||||
AC_MSG_CHECKING([for the distutils Python package])
|
||||
ac_distutils_result=`$PYTHON -c "import distutils" 2>&1`
|
||||
- if test -z "$ac_distutils_result"; then
|
||||
+ if test $? -eq 0; then
|
||||
AC_MSG_RESULT([yes])
|
||||
else
|
||||
AC_MSG_RESULT([no])
|
||||
Loading…
Add table
Add a link
Reference in a new issue