makefile.unix: Fixed errors building bitcoind without wxWidgets installed.
authorMatt Giuca <matt.giuca@gmail.com>
Fri, 25 Feb 2011 22:12:42 +0000 (09:12 +1100)
committerMatt Giuca <matt.giuca@gmail.com>
Fri, 25 Feb 2011 22:12:42 +0000 (09:12 +1100)
    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.

makefile.unix

index 2292639..d306f74 100644 (file)
@@ -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= \