aboutsummaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorMichael Heimpold <mhei@heimpold.de>2024-05-04 21:54:50 +0200
committerMichael Heimpold <mhei@heimpold.de>2024-05-04 23:15:59 +0200
commitecef65b3c464aa4b74da9249ca472cc2594b387d (patch)
treedb15e9dbd8f00348605ecb995b3e2647e8a2f6e0 /net
parent3cac19e4ec6aa96a404dbddb7bb8c07ebc582859 (diff)
gensio: add patch with workaround for buildbots (refs #24047)
This should solve the issue found on the buildbots: -snip- ... checking consistency of all components of python development environment... yes ./configure: line 24172: test: =: unary operator expected checking for pam_start in -lpam... (cached) no ... -snap- For still unknown reason, AX_PYTHON_DEVEL from the included m4 file is not used which would set the variable the correct way. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
Diffstat (limited to 'net')
-rw-r--r--net/gensio/patches/0001-Ensure-that-ax_python_devel_found_is_defined.patch10
1 files changed, 10 insertions, 0 deletions
diff --git a/net/gensio/patches/0001-Ensure-that-ax_python_devel_found_is_defined.patch b/net/gensio/patches/0001-Ensure-that-ax_python_devel_found_is_defined.patch
new file mode 100644
index 000000000..adf60ce3a
--- /dev/null
+++ b/net/gensio/patches/0001-Ensure-that-ax_python_devel_found_is_defined.patch
@@ -0,0 +1,10 @@
+--- a/configure.ac
++++ b/configure.ac
+@@ -2002,6 +2002,7 @@ if test "x$trypython" = "xyes"; then
+ PYTHON_CPPFLAGS="$pythoncflags"
+ fi
+ AX_PYTHON_DEVEL([], [true])
++ ax_python_devel_found=yes
+ else
+ ax_python_devel_found=no
+ fi