What changed, and why it matters
This commit is a harmless build-system fix. It tells the CMake installer to also include the manual page (help documentation) for the main `bitcoin` command-line program when installing Bitcoin Core. There is no security issue.
No action required; this is a benign build/installation metadata change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The change modifies src/CMakeLists.txt so that install_binary_component(bitcoin) is called with the HAS_MANPAGE flag. This only affects packaging/installation metadata and causes the bitcoin.1 manpage to be installed alongside the bitcoin binary. It does not alter executable code, permissions, network behavior, or cryptographic logic.
Changed components
src/CMakeLists.txtInspect captured patch +1 / −1
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index a6fb12c0..9abbf958 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -293,7 +293,7 @@ if(BUILD_BITCOIN_BIN)
add_windows_resources(bitcoin bitcoin-res.rc)
add_windows_application_manifest(bitcoin)
target_link_libraries(bitcoin core_interface bitcoin_util)
- install_binary_component(bitcoin)
+ install_binary_component(bitcoin HAS_MANPAGE)
endif()
# Bitcoin Core bitcoind.
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.