aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2022-02-20 17:38:45 +0200
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2022-02-20 17:38:57 +0200
commit2199ef79cba865af7949c3a55938ad54519ca5b8 (patch)
tree174d8a358532bfcec4c3fc44e18ece1a3a13d127 /configure.ac
parentd436c488d4216298016b09f8f97e10eada489bda (diff)
downloadbitcoin-2199ef79cba865af7949c3a55938ad54519ca5b8.tar.xz
build: Fix a non-portable use of `test`
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 e70d646e18..c6fde99435 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1442,7 +1442,7 @@ if test "$use_external_signer" != "no"; then
[have_boost_process="yes"],
[have_boost_process="no"])
AC_MSG_RESULT([$have_boost_process])
- if test "$have_boost_process" == "yes"; then
+ if test "$have_boost_process" = "yes"; then
use_external_signer="yes"
AC_DEFINE([ENABLE_EXTERNAL_SIGNER], [1], [Define if external signer support is enabled])
else