aboutsummaryrefslogtreecommitdiff
path: root/makefile.unix
diff options
context:
space:
mode:
authorMatt Giuca <matt.giuca@gmail.com>2011-02-26 09:12:42 +1100
committerMatt Giuca <matt.giuca@gmail.com>2011-02-26 09:12:42 +1100
commit84778a5b465bce7d30532eab30f5befe92bfbd13 (patch)
treef33a739f3be4df6f74050dbdc4bf1083adeefe78 /makefile.unix
parent3415b15a56e2ffec16c831d5994b969daa65dc2b (diff)
downloadbitcoin-84778a5b465bce7d30532eab30f5befe92bfbd13.tar.xz
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.
Diffstat (limited to 'makefile.unix')
-rw-r--r--makefile.unix4
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= \