aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2022-08-04 09:06:58 +0100
committerfanquake <fanquake@gmail.com>2022-08-04 09:07:09 +0100
commitf765d4e232a57255dc13585f88bd8eb450da50c0 (patch)
tree8aa8ddda13bf813e85510e0bd14d1f503daff87e /configure.ac
parent08085c764dbfa56f90a8221bdef9434971dbb02b (diff)
parent8df063e53712b69a346a83c599ca9cb83905b70b (diff)
downloadbitcoin-f765d4e232a57255dc13585f88bd8eb450da50c0.tar.xz
Merge bitcoin/bitcoin#25770: build: Fix help string for `--enable-external-signer` configure option
8df063e53712b69a346a83c599ca9cb83905b70b build: Fix help string for `--enable-external-signer` configure option (Hennadii Stepanov) Pull request description: This PR is a follow up of bitcoin/bitcoin#24065 and fixes the help string according to the actual default value https://github.com/bitcoin/bitcoin/blob/816ca01650f4cc66a61ac2f9b0f8b74cd9cd0cf8/configure.ac#L324-L327 ACKs for top commit: kristapsk: cr utACK 8df063e53712b69a346a83c599ca9cb83905b70b jarolrod: ACK 8df063e53712b69a346a83c599ca9cb83905b70b Tree-SHA512: ad3f457a53c9238ddd8ded9efd1224e564e6cb9da8b7ff7733a11e32a7daad5c0f6c6223509218f44944a874470cb0d2447897662eaf4e78c763b30785717c50
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 924bfd35ab..7ed9514aae 100644
--- a/configure.ac
+++ b/configure.ac
@@ -332,7 +332,7 @@ AC_ARG_ENABLE([werror],
[enable_werror=no])
AC_ARG_ENABLE([external-signer],
- [AS_HELP_STRING([--enable-external-signer],[compile external signer support (default is yes, requires Boost::Process)])],
+ [AS_HELP_STRING([--enable-external-signer],[compile external signer support (default is auto, requires Boost::Process)])],
[use_external_signer=$enableval],
[use_external_signer=auto])