mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
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>
This commit is contained in:
parent
aab658fc9f
commit
ec287d87f4
1 changed files with 1 additions and 1 deletions
|
@ -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 ; \
|
||||
|
|
Loading…
Reference in a new issue