reenable parallel build

This commit is contained in:
Jeffrey Paul 2016-09-02 00:48:38 +02:00
parent 4d220d803f
commit 2c7e0ceafb
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ RUN \
git checkout $SECP256K1_REV && \ git checkout $SECP256K1_REV && \
./autogen.sh && \ ./autogen.sh && \
./configure && \ ./configure && \
make && \ make -j$(nproc) && \
./tests && \ ./tests && \
make install && \ make install && \
cd / && \ cd / && \
@ -67,7 +67,7 @@ RUN \
-DLOW_MEMORY_NODE=ON \ -DLOW_MEMORY_NODE=ON \
. \ . \
&& \ && \
make && \ make -j$(nproc) && \
make install && \ make install && \
rm -rf /usr/local/src/steem rm -rf /usr/local/src/steem