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.
This commit is contained in:
parent
3415b15a56
commit
84778a5b46
1 changed files with 2 additions and 2 deletions
|
@ -4,9 +4,9 @@
|
||||||
|
|
||||||
CXX=g++
|
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
|
# for boost 1.37, add -mt to the boost libraries
|
||||||
LIBS= \
|
LIBS= \
|
||||||
|
|
Loading…
Reference in a new issue