diff mbox series

[libgpiod] build: drop python3-config check from configure.ac

Message ID 20250530112440.124178-1-m.heidelberg@cab.de
State New
Headers show
Series [libgpiod] build: drop python3-config check from configure.ac | expand

Commit Message

Markus Heidelberg May 30, 2025, 11:24 a.m. UTC
Since commit b7ba732e ("treewide: libgpiod v2 implementation")
autotools are no longer used to build the Python bindings and thus
python3-config is unused.

Fixes: 8aab09cb ("build: drop unused python-related bits from configure.ac")
Signed-off-by: Markus Heidelberg <m.heidelberg@cab.de>
---
 configure.ac | 6 ------
 1 file changed, 6 deletions(-)

Comments

Bartosz Golaszewski June 3, 2025, 4:58 p.m. UTC | #1
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>


On Fri, 30 May 2025 13:24:40 +0200, Markus Heidelberg wrote:
> Since commit b7ba732e ("treewide: libgpiod v2 implementation")
> autotools are no longer used to build the Python bindings and thus
> python3-config is unused.
> 
> 

Applied, thanks!

[1/1] build: drop python3-config check from configure.ac
      commit: 088c66ef20662b76eebf03e71f11196a5ae14b33

Best regards,
diff mbox series

Patch

diff --git a/configure.ac b/configure.ac
index 416ae28..9b6c862 100644
--- a/configure.ac
+++ b/configure.ac
@@ -230,12 +230,6 @@  if test "x$with_bindings_python" = xtrue
 then
 	AM_PATH_PYTHON([3.9], [],
 		[AC_MSG_ERROR([python3 not found - needed for python bindings])])
-	AC_CHECK_PROG([has_python_config], [python3-config], [true], [false])
-
-	if test "x$has_python_config" = xfalse
-	then
-		AC_MSG_ERROR([python3-config not found - needed for python bindings])
-	fi
 fi
 
 AC_ARG_ENABLE([bindings-rust],