remove --enable-glibc-back-compat configure flag in Bitcoin Core build
According to @patrick-ogrady this flag isn't required anymore, it is a remnant of a legacy workaround. closes #44
This commit is contained in:
parent
5e4a24e68d
commit
7747cc55e6
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ RUN git clone https://github.com/bitcoin/bitcoin \
|
|||
|
||||
RUN cd bitcoin \
|
||||
&& ./autogen.sh \
|
||||
&& ./configure --enable-glibc-back-compat --disable-tests --without-miniupnpc --without-gui --with-incompatible-bdb --disable-hardening --disable-zmq --disable-bench --disable-wallet \
|
||||
&& ./configure --disable-tests --without-miniupnpc --without-gui --with-incompatible-bdb --disable-hardening --disable-zmq --disable-bench --disable-wallet \
|
||||
&& make
|
||||
|
||||
RUN mv bitcoin/src/bitcoind /app/bitcoind \
|
||||
|
|
Loading…
Reference in a new issue