disable python optimizations causing failure

This commit is contained in:
Jay Lee
2019-04-23 15:49:49 -04:00
parent 221cd9826d
commit b818d6a1c1

View File

@@ -41,7 +41,7 @@ echo "Extracting Python..."
tar xf Python-$PYTHON_VER.tar.xz
cd Python-$PYTHON_VER
echo "Compiling Python $PYTHON_VER..."
./configure --with-openssl=$mypath/ssl --enable-optimizations --enable-shared \
./configure --with-openssl=$mypath/ssl --enable-shared \
--prefix=$mypath/python --with-ensurepip=upgrade > /dev/null
make -j$cpucount -s
echo "Installing Python..."