From e95e6e1418f9a66328165fec3bcb247190b34e1e Mon Sep 17 00:00:00 2001 From: James Booth Date: Fri, 13 Jun 2014 22:31:33 +0100 Subject: [PATCH] Removed python site path check from configure.ac --- configure.ac | 4 ---- 1 file changed, 4 deletions(-) diff --git a/configure.ac b/configure.ac index ce3da316..e1e6cea7 100644 --- a/configure.ac +++ b/configure.ac @@ -130,10 +130,6 @@ elif test "x$enable_python_plugins" != xno; then AX_PYTHON_DEVEL AM_CONDITIONAL([BUILD_PYTHON_API], [true]) AC_DEFINE([HAVE_PYTHON], [1], [Python support]) - pythonsitepath=`python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())" 2>/dev/null` - if test "X$pythonsitepath" != "X"; then - AC_DEFINE_UNQUOTED([PYTHON_SITE_PATH], ["$pythonsitepath"], [Python Site Path]) - fi else if test "x$enable_python_plugins" = xyes; then AC_MSG_ERROR([Python not found, cannot enable Python plugins.])