mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-23 21:34:45 +00:00
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
@ -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= \
|
||||
|
Loading…
x
Reference in New Issue
Block a user