# HG changeset patch # User Sebastien Jodogne # Date 1585731667 -7200 # Node ID 0977f515286103c39034aaeaa2989d488dc3b0e5 # Parent 777b677cc9fc9beea6209477cc66b289fc577d14 fix missing python in mingw32 builder diff -r 777b677cc9fc -r 0977f5152861 Resources/Builders/Dockerfile-MinGW-BuildEnvironment --- a/Resources/Builders/Dockerfile-MinGW-BuildEnvironment Wed Apr 01 10:43:11 2020 +0200 +++ b/Resources/Builders/Dockerfile-MinGW-BuildEnvironment Wed Apr 01 11:01:07 2020 +0200 @@ -5,5 +5,5 @@ RUN apt-get -y clean && apt-get -y update RUN DEBIAN_FRONTEND=noninteractive apt-get -y install \ - nano unzip cmake mingw-w64 patch wget bzip2 && \ + nano unzip cmake mingw-w64 patch wget bzip2 python && \ apt-get clean && rm -rf /var/lib/apt/lists/* diff -r 777b677cc9fc -r 0977f5152861 Resources/Builders/MinGW32-Python2.7/docker-internal.sh --- a/Resources/Builders/MinGW32-Python2.7/docker-internal.sh Wed Apr 01 10:43:11 2020 +0200 +++ b/Resources/Builders/MinGW32-Python2.7/docker-internal.sh Wed Apr 01 11:01:07 2020 +0200 @@ -11,7 +11,7 @@ cd /tmp/build wget http://orthanc.osimis.io/ThirdPartyDownloads/Python/python-2.7.17-win32.tar.bz2 -tar xvfj python-2.7.17-win32.tar.bz2 +tar xfj python-2.7.17-win32.tar.bz2 cmake /tmp/source-writeable/ \ -DCMAKE_BUILD_TYPE=$1 \