diff options
author | Matt Corallo <matt@bluematt.me> | 2012-02-15 16:05:55 -0500 |
---|---|---|
committer | Matt Corallo <matt@bluematt.me> | 2012-02-15 16:39:02 -0500 |
commit | 7dcd2004897e025391830b419426cf88491f23b5 (patch) | |
tree | e4f45f773adf99027010f253315ddf7d26f6b52b /src/makefile.unix | |
parent | b03cb15789d021a2dc8c32cbe5ed92ad16da0f40 (diff) |
Properly include $*_LIB_PATH in makefile.unix
Diffstat (limited to 'src/makefile.unix')
-rw-r--r-- | src/makefile.unix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/makefile.unix b/src/makefile.unix index 41452dec81..80b5bca341 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -7,7 +7,7 @@ USE_UPNP:=0 DEFS=-DNOPCH 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 LMODE2 = dynamic @@ -21,7 +21,7 @@ else endif # for boost 1.37, add -mt to the boost libraries -LIBS= \ +LIBS += \ -Wl,-B$(LMODE) \ -l boost_system$(BOOST_LIB_SUFFIX) \ -l boost_filesystem$(BOOST_LIB_SUFFIX) \ |