From 5199a9002fbf4e3c8f50372d965bbbcf25c577db Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Fri, 22 Mar 2013 11:16:48 +1300 Subject: [PATCH] Correct comment about sys.lib --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index f57a65fda..cfbc09426 100644 --- a/configure.ac +++ b/configure.ac @@ -670,7 +670,7 @@ else AC_MSG_CHECKING(for Python lib dir) PYLIBDIR=`($PYTHON -c "import sys; print sys.lib") 2>/dev/null` if test -z "$PYLIBDIR"; then - # older versions don't have sys.lib so the best we can do is assume lib + # Fedora patch Python to add sys.lib, for other distros we assume "lib". PYLIBDIR="lib" fi AC_MSG_RESULT($PYLIBDIR)