summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorGravatar Salvador Cuñat <salvador.cunat@gmail.com>2019-02-01 17:27:44 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-05-18 14:43:16 -0700
commitec287d87f4df9ffb3b831f5b09ddc974a3561262 (patch)
tree55e41f9ca8ae9679f72cbd447463848a64afdb54 /scripts
parentaab658fc9f787bec5461b8202b112e71cb868cf3 (diff)
downloadsubsurface-ec287d87f4df9ffb3b831f5b09ddc974a3561262.tar.gz
docker-mxe: Fix tee command line for static build
Add -a parameter to tee to avoid overwriting build.log when building static libraries for smtk2ssrf Signed-off-by: Salvador Cuñat <salvador.cunat@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/docker/mxe-build-container/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/docker/mxe-build-container/Dockerfile b/scripts/docker/mxe-build-container/Dockerfile
index 653ceb57e..b9def62bc 100644
--- a/scripts/docker/mxe-build-container/Dockerfile
+++ b/scripts/docker/mxe-build-container/Dockerfile
@@ -50,7 +50,7 @@ RUN mv /win/settings.mk /win/mxe
RUN cd /win/mxe ; \
make -j 6 2>&1 | tee build.log ;
RUN cd /win/mxe ; \
- make MXE_TARGETS=i686-w64-mingw32.static glib -j 6 2>&1 | tee build.log ;
+ make MXE_TARGETS=i686-w64-mingw32.static glib -j 6 2>&1 | tee -a build.log ;
RUN cd /win/mxe ; \
mkdir -p neolit ; cd neolit ; git clone -b wip/win git://github.com/qt/qtconnectivity
RUN cd /win/mxe/neolit/qtconnectivity ; \