From: Wouter Wijngaards Date: Wed, 10 Aug 2011 05:59:42 +0000 (+0000) Subject: Fix python site package path to lib64. X-Git-Tag: release-1.6.11rc1~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3767982d4ba1521ee39c11f9e519a754aee30f3;p=thirdparty%2Fldns.git Fix python site package path to lib64. --- diff --git a/Changelog b/Changelog index c337b763..1de9dd56 100644 --- a/Changelog +++ b/Changelog @@ -2,6 +2,7 @@ * bugfix #394: Fix socket leak on errors * bugfix #392: Apex only and percentage checks for ldns-verify-zone * bugfix #398: Allow NSEC RRSIGs before the NSEC3 in ldns-verify-zone + * Fix python site package path to /usr/lib64. 1.6.10 2011-05-31 * New example tool added: ldns-gen-zone. diff --git a/acx_python.m4 b/acx_python.m4 index f4bf421f..6fa925af 100644 --- a/acx_python.m4 +++ b/acx_python.m4 @@ -129,7 +129,7 @@ $ac_distutils_result]) AC_MSG_CHECKING([for Python site-packages path]) if test -z "$PYTHON_SITE_PKG"; then PYTHON_SITE_PKG=`$PYTHON -c "import distutils.sysconfig; \ - print distutils.sysconfig.get_python_lib(0,0);"` + print distutils.sysconfig.get_python_lib(1,0);"` fi AC_MSG_RESULT([$PYTHON_SITE_PKG]) AC_SUBST([PYTHON_SITE_PKG])