diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-09-28 10:36:33 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-09-28 10:36:33 +0200 |
| commit | a5b78c2fa8db87467a6434b2dc22522d43378aa1 (patch) | |
| tree | 5801c2c64f3f63f71b0517af7ff485ecbb9e1ae1 /src | |
| parent | Merge pull request #6724 (diff) | |
| download | discoin-a5b78c2fa8db87467a6434b2dc22522d43378aa1.tar.xz discoin-a5b78c2fa8db87467a6434b2dc22522d43378aa1.zip | |
build: Remove dependency of bitcoin-cli on secp256k1
bitcoin-cli (in contrast to bitcoin-tx, which does signing ops)
shouldn't need secp256k1, and indeed it doesn't.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 67e848be3..7fdc766e1 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -361,8 +361,7 @@ endif bitcoin_cli_LDADD = \ $(LIBBITCOIN_CLI) \ $(LIBBITCOIN_UNIVALUE) \ - $(LIBBITCOIN_UTIL) \ - $(LIBSECP256K1) + $(LIBBITCOIN_UTIL) bitcoin_cli_LDADD += $(BOOST_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(EVENT_LIBS) # |