diff options
| author | Cory Fields <[email protected]> | 2014-10-14 18:03:52 -0400 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2014-11-19 22:08:27 -0500 |
| commit | e0077de5de538dd51b5dbd04e05c998d40b20b30 (patch) | |
| tree | f533576846b475f5104ab0ee6d00807021c7b614 /src/Makefile.test.include | |
| parent | doc: add libgmp dependency for secp256k1 (diff) | |
| download | discoin-e0077de5de538dd51b5dbd04e05c998d40b20b30.tar.xz discoin-e0077de5de538dd51b5dbd04e05c998d40b20b30.zip | |
build: make a distinction between static app ldflags and static lib ldflags
For windows builds, exe's are always static, but libs should still conform to
--enabled-shared and --enable-static.
Diffstat (limited to 'src/Makefile.test.include')
| -rw-r--r-- | src/Makefile.test.include | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.test.include b/src/Makefile.test.include index 79509c9a3..c3cd7db14 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -86,7 +86,7 @@ test_test_bitcoin_LDADD += $(LIBBITCOIN_WALLET) endif test_test_bitcoin_LDADD += $(BDB_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(MINIUPNPC_LIBS) -test_test_bitcoin_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) +test_test_bitcoin_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) nodist_test_test_bitcoin_SOURCES = $(GENERATED_TEST_FILES) |