fixeria has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-smlc/+/33758 )
Change subject: configure.ac: migrate from python2 to python3
......................................................................
configure.ac: migrate from python2 to python3
Fortunatelly we don't have any python2 specific code, so just bump.
Change-Id: Iaab94a1e896b78dc8699256e326edc165b0ed922
Related: OS#5950
---
M configure.ac
1 file changed, 15 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-smlc refs/changes/58/33758/1
diff --git a/configure.ac b/configure.ac
index 65ebd59..484d689 100644
--- a/configure.ac
+++ b/configure.ac
@@ -117,9 +117,9 @@
[Include the VTY/CTRL tests in make check [default=no]]),
[enable_ext_tests="$enableval"],[enable_ext_tests="no"])
if test "x$enable_ext_tests" = "xyes" ; then
- AC_CHECK_PROG(PYTHON2_AVAIL,python2,yes)
- if test "x$PYTHON2_AVAIL" != "xyes" ; then
- AC_MSG_ERROR([Please install python2 to run the VTY/CTRL tests.])
+ AC_CHECK_PROG(PYTHON3_AVAIL,python3,yes)
+ if test "x$PYTHON3_AVAIL" != "xyes" ; then
+ AC_MSG_ERROR([Please install python3 to run the VTY/CTRL tests.])
fi
AC_CHECK_PROG(OSMOTESTEXT_CHECK,osmotestvty.py,yes)
if test "x$OSMOTESTEXT_CHECK" != "xyes" ; then
--
To view, visit
https://gerrit.osmocom.org/c/osmo-smlc/+/33758
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-smlc
Gerrit-Branch: master
Gerrit-Change-Id: Iaab94a1e896b78dc8699256e326edc165b0ed922
Gerrit-Change-Number: 33758
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: newchange