diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2017-08-15 16:40:30 +0200 |
---|---|---|
committer | MeshCollider <dobsonsa68@gmail.com> | 2017-11-16 08:23:02 +1300 |
commit | 0c715214dd2d03b66a366a87bf6d2c576c0176c2 (patch) | |
tree | 500f71856f69159aa896c86be997a1f8a9eaad9a /src/Makefile.test.include | |
parent | 5b56ec969fcbedd87eb0cf43c16eb991aca300d0 (diff) |
build: Remove -I for everything but project root
Remove -I from build system for everything but the project root,
and built-in dependencies.
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 d3e7b5da12..f037705aaf 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -96,7 +96,7 @@ BITCOIN_TESTS += \ endif test_test_bitcoin_SOURCES = $(BITCOIN_TESTS) $(JSON_TEST_FILES) $(RAW_TEST_FILES) -test_test_bitcoin_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -I$(builddir)/test/ $(TESTDEFS) $(EVENT_CFLAGS) +test_test_bitcoin_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) $(TESTDEFS) $(EVENT_CFLAGS) test_test_bitcoin_LDADD = if ENABLE_WALLET test_test_bitcoin_LDADD += $(LIBBITCOIN_WALLET) |