doc: Correct `pkgin` command usage on NetBSD
What changed, and why it matters
This commit fixes a typo in the NetBSD build documentation. The correct command to install packages with pkgin is 'pkgin install <package>', not 'pkgin <package>'. It does not change any code, build scripts, or runtime behavior.
No security action needed. Treat as a normal documentation fix.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The patch updates doc/build-netbsd.md to add the missing ‘install’ subcommand in three example pkgin commands (sqlite3, capnproto, zeromq). This is purely a documentation correction with no functional or security impact on Bitcoin Core.
Changed components
doc/build-netbsd.mdInspect captured patch +3 / −3
diff --git a/doc/build-netbsd.md b/doc/build-netbsd.md
index f2631777..b3b78152 100644
--- a/doc/build-netbsd.md
+++ b/doc/build-netbsd.md
@@ -34,7 +34,7 @@ cmake -B build
SQLite is required for the wallet:
```bash
-pkgin sqlite3
+pkgin install sqlite3
```
To build Bitcoin Core without the wallet, use `-DENABLE_WALLET=OFF`.
@@ -42,7 +42,7 @@ To build Bitcoin Core without the wallet, use `-DENABLE_WALLET=OFF`.
Cap'n Proto is needed for IPC functionality (see [multiprocess.md](multiprocess.md)):
```bash
-pkgin capnproto
+pkgin install capnproto
```
Compile with `-DENABLE_IPC=OFF` if you do not need IPC functionality.
@@ -84,7 +84,7 @@ Otherwise, if you don't need QR encoding support, use the `-DWITH_QRENCODE=OFF`
Bitcoin Core can provide notifications via ZeroMQ. If the package is installed, support will be compiled in.
```bash
-pkgin zeromq
+pkgin install zeromq
```
#### Test Suite Dependencies
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.