aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2022-02-15 09:30:13 +0100
committerMarcoFalke <falke.marco@gmail.com>2022-02-15 09:30:16 +0100
commit566df80624b0a4bd77a2184c0a7ca43c514d80cd (patch)
treedb762b9203662017c7a6fdd32dccb5ee12a0d119 /configure.ac
parent444b6b342df61f08f958f084aeb9ef3aa81d76d7 (diff)
parentfaef344f84a566436ffe2a277dec2cd6c7e1664b (diff)
downloadbitcoin-566df80624b0a4bd77a2184c0a7ca43c514d80cd.tar.xz
Merge bitcoin/bitcoin#24336: Print enable_fuzz_binary in configure
faef344f84a566436ffe2a277dec2cd6c7e1664b Print enable_fuzz_binary in configure (MarcoFalke) Pull request description: A *disabled* `enable_fuzz` on current master does *not* mean the the fuzz binary is not compiled. This is confusion, so fix it. * `enable_fuzz` toggles compilation flags for fuzzing and disables all other target. There is no need to print this in the configure result, because the compilation flags are already printed. Also, all other targets are already printed as `no`. * `enable_fuzz_binary` does what it says it does and is currently not printed. So print it. ACKs for top commit: hebasto: ACK faef344f84a566436ffe2a277dec2cd6c7e1664b, tested on Linux Mint 20.2 (x86_64): Tree-SHA512: 9b02b05c4b9c5fc92cf3487497392690303c36eace5e217f18b4349f059b5a23a7c0e0d030fb6fa7bbad83e927576a5e81c00099164f9ed8e185c0969dc17689
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 5f3aacf888..222fa94946 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1957,8 +1957,8 @@ if test $enable_fuzz = "no"; then
echo " with test = $use_tests"
else
echo " with test = not building test_bitcoin because fuzzing is enabled"
- echo " with fuzz = $enable_fuzz"
fi
+echo " with fuzz binary = $enable_fuzz_binary"
echo " with bench = $use_bench"
echo " with upnp = $use_upnp"
echo " with natpmp = $use_natpmp"