From 84778a5b465bce7d30532eab30f5befe92bfbd13 Mon Sep 17 00:00:00 2001 From: Matt Giuca Date: Sat, 26 Feb 2011 09:12:42 +1100 Subject: [PATCH] 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. --- makefile.unix | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile.unix b/makefile.unix index 2292639..d306f74 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= \ -- 1.7.1