From b818d6a1c196d8123d1ab8b9babd357974cf7b6d Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Tue, 23 Apr 2019 15:49:49 -0400 Subject: [PATCH] disable python optimizations causing failure --- src/travis/linux-x86_64-before-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/travis/linux-x86_64-before-install.sh b/src/travis/linux-x86_64-before-install.sh index 746adfec..bdca0e05 100755 --- a/src/travis/linux-x86_64-before-install.sh +++ b/src/travis/linux-x86_64-before-install.sh @@ -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..."