From 1ff5a70b9b2176134f954088aa00e9f39e6309b0 Mon Sep 17 00:00:00 2001 From: Boris Feld Date: Thu, 4 Aug 2016 19:25:37 +0200 Subject: [PATCH] Remove enable_shared in python2.7 Dockerfile In order to compile a static library, we need python to be compiled as static too --- 2.7/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/2.7/Dockerfile b/2.7/Dockerfile index 9b1ffaa96..67d4881c1 100644 --- a/2.7/Dockerfile +++ b/2.7/Dockerfile @@ -49,7 +49,6 @@ RUN set -ex \ \ && cd /usr/src/python \ && ./configure \ - --enable-shared \ --enable-unicode=ucs4 \ && make -j$(nproc) \ && make install \