# HG changeset patch # User Sebastien Jodogne # Date 1585731644 -7200 # Node ID 2ec8e4cb93d39ca402323ab2f0f8d9fdc7f91d2c # Parent 3848f5b1d993de043a5392eed163416b39730bda fix missing python in mingw32 builder diff -r 3848f5b1d993 -r 2ec8e4cb93d3 Resources/Builders/Dockerfile-MinGW-BuildEnvironment --- a/Resources/Builders/Dockerfile-MinGW-BuildEnvironment Wed Apr 01 10:43:36 2020 +0200 +++ b/Resources/Builders/Dockerfile-MinGW-BuildEnvironment Wed Apr 01 11:00:44 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 3848f5b1d993 -r 2ec8e4cb93d3 Resources/Builders/MinGW32-Python2.7/docker-internal.sh --- a/Resources/Builders/MinGW32-Python2.7/docker-internal.sh Wed Apr 01 10:43:36 2020 +0200 +++ b/Resources/Builders/MinGW32-Python2.7/docker-internal.sh Wed Apr 01 11:00:44 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 \