aboutsummaryrefslogtreecommitdiff
path: root/src/netbase.h
diff options
context:
space:
mode:
authorCory Fields <cory-nospam-@coryfields.com>2014-06-23 14:04:24 -0400
committerCory Fields <cory-nospam-@coryfields.com>2014-06-23 14:04:38 -0400
commitf3967bcc50ea95510f12a86e90dec4c8c78fff3b (patch)
tree03eb57be5a27209e78945a86fb914d5c4eee3842 /src/netbase.h
parent6d875669aa7ce27cc6dd371be7d8e3c9b860509e (diff)
downloadbitcoin-f3967bcc50ea95510f12a86e90dec4c8c78fff3b.tar.xz
build: fix build weirdness after 54372482.
bitcoin-config.h moved, but the old file is likely to still exist when reconfiguring or switching branches. This would've caused files to not rebuild correctly, and other strange problems. Make the path explicit so that the old one cannot be found. Core libs use config/bitcoin-config.h. Libs (like crypto) which don't want access to bitcoin's headers continue to use -Iconfig and #include bitcoin-config.h.
Diffstat (limited to 'src/netbase.h')
-rw-r--r--src/netbase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/netbase.h b/src/netbase.h
index 23cfb1f158..40a3d25676 100644
--- a/src/netbase.h
+++ b/src/netbase.h
@@ -6,7 +6,7 @@
#define BITCOIN_NETBASE_H
#if defined(HAVE_CONFIG_H)
-#include "bitcoin-config.h"
+#include "config/bitcoin-config.h"
#endif
#include "compat.h"