osmith has submitted this change. ( https://gerrit.osmocom.org/c/libosmocore/+/39802?usp=email )
Change subject: configure: set min python version check to 3.4 ......................................................................
configure: set min python version check to 3.4
While the osmo-gsm-tester builder jobs that use the poky SDK with python version 3.5 are passing with the last patch, the jobs that build our images and packages with the poky SDK (201705 jobs) are still failing. This is because they run on a machine with Python 3.4 installed, and that version gets used in the build process. Lower the version to 3.4 to not have a regression there.
Fixes: 489a6f ("configure.ac: check for Python interpreter unconditionally") Fixes: 40e8f5 ("configure: set min python version check to 3.5") Change-Id: Ia83f360274061463232c1fcd7f6dc6e70f774738 --- M configure.ac 1 file changed, 2 insertions(+), 1 deletion(-)
Approvals: osmith: Verified fixeria: Looks good to me, but someone else must approve Jenkins Builder: Verified pespin: Looks good to me, approved
diff --git a/configure.ac b/configure.ac index 80d1b76..7863624 100644 --- a/configure.ac +++ b/configure.ac @@ -176,7 +176,8 @@ dnl Search for a Python interpreter on the system dnl python is needed at built-time for auto-generating code dnl Don't require a newer version than 3.5 for now, as poky 201705 ships that -AM_PATH_PYTHON([3.5]) +dnl Don't require a newer version than 3.4, we build poky 201705 on debian 8 +AM_PATH_PYTHON([3.4])
PKG_CHECK_MODULES(TALLOC, [talloc >= 2.1.0])