diff options
author | Matt Giuca <matt.giuca@gmail.com> | 2011-02-26 09:12:42 +1100 |
---|---|---|
committer | Matt Giuca <matt.giuca@gmail.com> | 2011-02-26 09:12:42 +1100 |
commit | 84778a5b465bce7d30532eab30f5befe92bfbd13 (patch) | |
tree | f33a739f3be4df6f74050dbdc4bf1083adeefe78 | |
parent | 3415b15a56e2ffec16c831d5994b969daa65dc2b (diff) |
makefile.unix: Fixed errors building bitcoind without wxWidgets installed.
WXINCLUDEPATHS and WXLIBS now assigned with '=' instead of ':='.
This means they are only evaluated on-demand, and they will never be
requested by 'make bitcoind', so it won't try to call wx-config.
-rw-r--r-- | makefile.unix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile.unix b/makefile.unix index 229263912d..d306f746d3 100644 --- a/makefile.unix +++ b/makefile.unix @@ -4,9 +4,9 @@ CXX=g++ -WXINCLUDEPATHS:=$(shell wx-config --cxxflags) +WXINCLUDEPATHS=$(shell wx-config --cxxflags) -WXLIBS:=$(shell wx-config --libs) +WXLIBS=$(shell wx-config --libs) # for boost 1.37, add -mt to the boost libraries LIBS= \ |