bitcoin-core: drop additional dependency cflags passing (#9585)

After some changes we made upstream, passing the flags in this way
*should* no-longer be required.
This commit is contained in:
Michael Ford 2023-02-06 18:13:43 +08:00 committed by GitHub
parent ab9e948cf3
commit 785b795ab1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ fi
(
cd depends
sed -i --regexp-extended '/.*rm -rf .*extract_dir.*/d' ./funcs.mk # Keep extracted source
make HOST=$BUILD_TRIPLET NO_QT=1 NO_BDB=1 NO_ZMQ=1 NO_UPNP=1 NO_NATPMP=1 libevent_cflags="${CFLAGS}" sqlite_cflags="${CFLAGS}" -j$(nproc)
make HOST=$BUILD_TRIPLET NO_QT=1 NO_BDB=1 NO_ZMQ=1 NO_UPNP=1 NO_NATPMP=1 -j$(nproc)
# DEBUG=1 is temporarily disabled due to libc++ bugs
)