configure.ac: migrate from python2 to python3
Fortunatelly we don't have any python2 specific code, so just bump. Change-Id: Ib293c60cf66000b3e2520f7a02f39c4baa1c5ce9changes/59/33759/1
parent
e9ce31876d
commit
dc4b5d6522
|
@ -110,9 +110,9 @@ AC_ARG_ENABLE([external_tests],
|
|||
[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
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
|
||||
app_configs = {
|
||||
"osmo-e1-recorder": ["doc/examples/osmo-e1-recorder.cfg"]
|
||||
|
|
Loading…
Reference in New Issue