Skip to content

Commit e93aef8

Browse files
committed
Use make install without -j 4
1 parent 05c0a9d commit e93aef8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ RUN export CC=$TARGET_CC && \
8383
sha256sum -c checksums.txt && \
8484
tar xzf zlib-$VERS.tar.gz && cd zlib-$VERS && \
8585
./configure --static --archs="-fPIC" --prefix=$TARGET_HOME && \
86-
make && sudo make install -j 4 && \
86+
make && sudo make install && \
8787
cd .. && rm -rf zlib-$VERS.tar.gz zlib-$VERS checksums.txt
8888

8989
RUN export CC=$TARGET_CC && \
@@ -98,7 +98,7 @@ RUN export CC=$TARGET_CC && \
9898
tar xzf openssl-$VERS.tar.gz && cd openssl-$VERS && \
9999
./Configure $OPENSSL_ARCH -fPIC --prefix=$TARGET_HOME && \
100100
make depend && \
101-
make && sudo make install -j 4 && \
101+
make && sudo make install && \
102102
cd .. && rm -rf openssl-$VERS.tar.gz openssl-$VERS checksums.txt
103103

104104
ENV OPENSSL_DIR=$TARGET_HOME/ \

0 commit comments

Comments
 (0)