diff options
| author | MarcoFalke <[email protected]> | 2018-09-27 11:12:28 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-09-27 11:13:51 -0400 |
| commit | b88dd7c2dbf8daca58306afd1744c4f88049b6df (patch) | |
| tree | 8c3149f03580ee8561e48da24b7e355464890297 /doc | |
| parent | Merge #14305: Tests: enforce critical class instance attributes in functional... (diff) | |
| parent | Bugfix: Only run bitcoin-tx tests when bitcoin-tx is enabled (diff) | |
| download | discoin-b88dd7c2dbf8daca58306afd1744c4f88049b6df.tar.xz discoin-b88dd7c2dbf8daca58306afd1744c4f88049b6df.zip | |
Merge #12246: Bugfix: Only run bitcoin-tx tests when bitcoin-tx is enabled
a2a04a5abb Bugfix: Only run bitcoin-tx tests when bitcoin-tx is enabled (Luke Dashjr)
92af71cea9 configure: Make it possible to build only one of bitcoin-cli or bitcoin-tx (Luke Dashjr)
Pull request description:
Includes #5618 (which the reasons for rejecting no longer hold true)
Tree-SHA512: f30a8e4a2f70166b7cabef77c4674163b3a9da14c6a547d34f00d1056a19bf4d23e22851eea726fad2afc8735d5473ae91122c770b65ac3886663dc20e2c5b70
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/man/Makefile.am | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/man/Makefile.am b/doc/man/Makefile.am index 08ff4d6ac..9b36319e6 100644 --- a/doc/man/Makefile.am +++ b/doc/man/Makefile.am @@ -8,6 +8,10 @@ if ENABLE_QT dist_man1_MANS+=bitcoin-qt.1 endif -if BUILD_BITCOIN_UTILS - dist_man1_MANS+=bitcoin-cli.1 bitcoin-tx.1 +if BUILD_BITCOIN_CLI + dist_man1_MANS+=bitcoin-cli.1 +endif + +if BUILD_BITCOIN_TX + dist_man1_MANS+=bitcoin-tx.1 endif |