From e2c71c4fca44e14366653eedb8a15183d6a0444b Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Sat, 8 Nov 2025 19:08:25 +0000 Subject: [PATCH] doc: Correct `pkgin` command usage on NetBSD Github-Pull: #33827 Rebased-From: 0698c6b494de0e28c9b909585905aab5b187286e --- doc/build-netbsd.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/build-netbsd.md b/doc/build-netbsd.md index f2631777221..b3b781521e4 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