From 8054fd2f3221040b33b615ed5be7baaa072d8fff Mon Sep 17 00:00:00 2001 From: Jonathan Hui Date: Mon, 6 Mar 2017 20:15:01 -0800 Subject: [PATCH] Remove python and pexpect check from configure. (#1428) --- configure.ac | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/configure.ac b/configure.ac index 4abf8457d..2ba9f3484 100644 --- a/configure.ac +++ b/configure.ac @@ -338,25 +338,6 @@ NL_ENABLE_TESTS([yes]) AM_CONDITIONAL([OPENTHREAD_BUILD_TESTS], [test "${nl_cv_build_tests}" = "yes"]) -# Check for Python and Python libraries used in the tests -if test "${nl_cv_build_tests}" = "yes"; then - AC_MSG_CHECKING([checking for Python and Python libraries used in tests.]) - - # Check for Python - python --version 2> /dev/null - if test $? != 0; then - AC_MSG_ERROR(["Cannot run tests: missing Python."]) - fi - - # Check for Python pexpect library - python -c 'import pexpect' 2> /dev/null - if test $? != 0; then - AC_MSG_ERROR(["Cannot run tests: missing Python pexpect library."]) - fi - - AC_MSG_RESULT([ok]) -fi - # # Full Thread Device #