diff options
| author | Matt Giuca <[email protected]> | 2011-02-26 09:12:42 +1100 |
|---|---|---|
| committer | Matt Giuca <[email protected]> | 2011-02-26 09:12:42 +1100 |
| commit | 84778a5b465bce7d30532eab30f5befe92bfbd13 (patch) | |
| tree | f33a739f3be4df6f74050dbdc4bf1083adeefe78 | |
| parent | makefile.unix: WXINCLUDEPATHS now only used for building GUI object files. (diff) | |
| download | discoin-84778a5b465bce7d30532eab30f5befe92bfbd13.tar.xz discoin-84778a5b465bce7d30532eab30f5befe92bfbd13.zip | |
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.
| -rw-r--r-- | makefile.unix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile.unix b/makefile.unix index 229263912..d306f746d 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= \ |