From 434956b37afb55a418d488233a6afaf907d4e8d2 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 8 Sep 2011 13:51:17 +1000 Subject: [PATCH] use --enabled-shared in python install script this makes the build much smaller, and fixes a problem on 'tridge' in the build farm --- install_python.fns | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_python.fns b/install_python.fns index d44b999c..d3c4d644 100644 --- a/install_python.fns +++ b/install_python.fns @@ -14,7 +14,7 @@ do_install_python() { rm -rf $VERSION || exit 1 tar -xf $VERSION.tar || exit 1 cd $VERSION || exit 1 - ./configure --prefix=$HOME/python --disable-ipv6 || exit 1 + ./configure --prefix=$HOME/python --disable-ipv6 --enable-shared || exit 1 make || exit 1 make install || exit 1 cd ../.. || exit 1 -- 2.34.1