Skip to content

Commit 30062f8

Browse files
authored
Update build-netbsd.md
Minor improvement to some of the instructions, and added "autogen.sh" to the steps.
1 parent a0ce33f commit 30062f8

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

doc/build-netbsd.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,25 @@ python27
2525

2626
Download the source code:
2727
```
28-
git clone https://github.com/bitcoin/bitcoin.git
28+
git clone https://github.com/bitcoin/bitcoin
2929
```
3030

3131
See [dependencies.md](dependencies.md) for a complete overview.
3232

3333
### Building Bitcoin Core
3434

35-
**Important**: use `gmake`, not `make`. The non-GNU `make` will exit with an error.
35+
**Important**: Use `gmake` (the non-GNU `make` will exit with an error).
3636

37-
To configure with wallet:
37+
With wallet:
3838
```
39+
./autogen.sh
3940
./configure CPPFLAGS="-I/usr/pkg/include -DOS_NETBSD" LDFLAGS="-L/usr/pkg/lib" BOOST_CPPFLAGS="-I/usr/pkg/include" BOOST_LDFLAGS="-L/usr/pkg/lib"
4041
gmake
4142
```
4243

43-
To configure without wallet:
44+
Without wallet:
4445
```
46+
./autogen.sh
4547
./configure --disable-wallet CPPFLAGS="-I/usr/pkg/include -DOS_NETBSD" LDFLAGS="-L/usr/pkg/lib" BOOST_CPPFLAGS="-I/usr/pkg/include" BOOST_LDFLAGS="-L/usr/pkg/lib"
4648
gmake
4749
```

0 commit comments

Comments
 (0)