mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-03 09:56:38 -05:00
Properly include $*_LIB_PATH in makefile.unix
This commit is contained in:
parent
b03cb15789
commit
7dcd200489
1 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ USE_UPNP:=0
|
||||||
DEFS=-DNOPCH
|
DEFS=-DNOPCH
|
||||||
|
|
||||||
DEFS += $(addprefix -I,$(CURDIR) $(BOOST_INCLUDE_PATH) $(BDB_INCLUDE_PATH) $(OPENSSL_INCLUDE_PATH))
|
DEFS += $(addprefix -I,$(CURDIR) $(BOOST_INCLUDE_PATH) $(BDB_INCLUDE_PATH) $(OPENSSL_INCLUDE_PATH))
|
||||||
LIBS += $(addprefix -l,$(BOOST_LIB_PATH) $(BDB_LIB_PATH) $(OPENSSL_LIB_PATH))
|
LIBS = $(addprefix -L,$(BOOST_LIB_PATH) $(BDB_LIB_PATH) $(OPENSSL_LIB_PATH))
|
||||||
|
|
||||||
LMODE = dynamic
|
LMODE = dynamic
|
||||||
LMODE2 = dynamic
|
LMODE2 = dynamic
|
||||||
|
@ -21,7 +21,7 @@ else
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# for boost 1.37, add -mt to the boost libraries
|
# for boost 1.37, add -mt to the boost libraries
|
||||||
LIBS= \
|
LIBS += \
|
||||||
-Wl,-B$(LMODE) \
|
-Wl,-B$(LMODE) \
|
||||||
-l boost_system$(BOOST_LIB_SUFFIX) \
|
-l boost_system$(BOOST_LIB_SUFFIX) \
|
||||||
-l boost_filesystem$(BOOST_LIB_SUFFIX) \
|
-l boost_filesystem$(BOOST_LIB_SUFFIX) \
|
||||||
|
|
Loading…
Add table
Reference in a new issue