diff options
author | Matt Whitlock <bitcoin@mattwhitlock.name> | 2021-11-19 14:26:58 -0500 |
---|---|---|
committer | Matt Whitlock <bitcoin@mattwhitlock.name> | 2021-11-19 14:26:58 -0500 |
commit | cf7292597e18ffca06b0fbf8bcd545aec387e380 (patch) | |
tree | 2c0d506729e3e7100f310678e8645c1ea73c2458 | |
parent | fe03f7a37fd0ef05149161f6b95a25493e1fe38f (diff) |
configure.ac: remove Bashism
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 0443dd9d5c..1c5b0f51cc 100644 --- a/configure.ac +++ b/configure.ac @@ -1923,7 +1923,7 @@ if test x$bitcoin_enable_qt != xno; then echo " with qr = $use_qr" fi echo " with zmq = $use_zmq" -if test x$enable_fuzz == xno; then +if test x$enable_fuzz = xno; then echo " with test = $use_tests" else echo " with test = not building test_bitcoin because fuzzing is enabled" |