diff options
| author | Chris Mayo <aklhfex@gmail.com> | 2022-11-02 19:29:56 +0000 |
|---|---|---|
| committer | Frediano Ziglio <freddy77@gmail.com> | 2023-12-16 18:45:43 +0000 |
| commit | 29dacb5f53f5183fb089a3fb02d081dd08bde8a1 (patch) | |
| tree | 7548d9c5cae3960dbedf1f430c714f64e306ce9d /m4/spice-deps.m4 | |
| parent | 91fc091358ac4906a05b68d70e9db94082c0749f (diff) | |
Stop using Python six package
Signed-off-by: Chris Mayo <aklhfex@gmail.com>
Acked-by: Frediano Ziglio <freddy77@gmail.com>
Diffstat (limited to 'm4/spice-deps.m4')
| -rw-r--r-- | m4/spice-deps.m4 | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/m4/spice-deps.m4 b/m4/spice-deps.m4 index b5466e6..46e7729 100644 --- a/m4/spice-deps.m4 +++ b/m4/spice-deps.m4 @@ -153,14 +153,12 @@ AC_DEFUN([SPICE_CHECK_PYTHON_MODULES], [ if test "x$enable_python_checks" != "xno"; then AS_IF([test -n "$PYTHON"], # already set required PYTHON version [AM_PATH_PYTHON - AX_PYTHON_MODULE([six], [1]) AX_PYTHON_MODULE([pyparsing], [1])], [PYTHON=python3 - AX_PYTHON_MODULE([six]) AX_PYTHON_MODULE([pyparsing]) - test "$HAVE_PYMOD_SIX" = "yes" && test "$HAVE_PYMOD_PYPARSING" = "yes"], + test "$HAVE_PYMOD_PYPARSING" = "yes"], [AM_PATH_PYTHON([3])], - [AC_MSG_ERROR([Python modules six and pyparsing are required])]) + [AC_MSG_ERROR([Python module pyparsing is required])]) else AM_PATH_PYTHON fi |
