Skip to content

Commit a62e856

Browse files
Hein-Pieter van Braam-StewartHein-Pieter van Braam-Stewart
authored andcommitted
Don't build executables only to immediately delete them
1 parent 206b9e2 commit a62e856

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile.windows

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN dnf -y install scons mingw32-gcc mingw32-gcc-c++ mingw32-winpthreads-static
1010
/root/files/mingw32-binutils-2.30-5.fc29.godot.x86_64.rpm && \
1111
curl https://download.mono-project.com/sources/mono/mono-${mono_version}.tar.bz2 | tar xj && \
1212
cd mono-${mono_version} && \
13-
./configure --prefix=/root/dependencies/mono-64 --host=x86_64-w64-mingw32 --disable-boehm --disable-mcs-build && \
13+
./configure --prefix=/root/dependencies/mono-64 --host=x86_64-w64-mingw32 --disable-boehm --disable-mcs-build --disable-executables && \
1414
echo '#define HAVE_STRUCT_SOCKADDR_IN6 1' >> config.h && \
1515
make -j && \
1616
make install && \
@@ -21,7 +21,7 @@ RUN dnf -y install scons mingw32-gcc mingw32-gcc-c++ mingw32-winpthreads-static
2121
ln -s /usr/bin/mono-sgen /root/dependencies/mono-64/bin/mono-sgen && \
2222
ln -sf /usr/lib/mono/* /root/dependencies/mono-64/lib/mono || /bin/true && \
2323
cp -rvp /etc/mono /root/dependencies/mono-64/etc && \
24-
./configure --prefix=/root/dependencies/mono-32 --host=i686-w64-mingw32 --disable-boehm --disable-mcs-build && \
24+
./configure --prefix=/root/dependencies/mono-32 --host=i686-w64-mingw32 --disable-boehm --disable-mcs-build --disable-executables && \
2525
echo '#define HAVE_STRUCT_SOCKADDR_IN6 1' >> config.h && \
2626
make -j && \
2727
make install && \

0 commit comments

Comments
 (0)