Merge pull request #246 from Hindenburg/cmake-issue

"!64BIT_BUILD" is a variable name. Changed to "NOT 64BIT_BUILD"
This commit is contained in:
sudonim1 2014-08-17 13:26:29 +01:00
commit 071fbb92df
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ if(wxWidgets_FOUND)
if(Linux)
# Force the use of 32 bit library configuration on
# 64 bits machine with 32 bits library in /usr/lib32
if(_ARCH_64 AND !64BIT_BUILD)
if(_ARCH_64 AND NOT 64BIT_BUILD)
## There is no guarantee that wx-config is a link to a 32 bits library. So you need to force the destinity
# Library can go into 3 path major paths (+ multiarch but you will see that later when implementation is done)
# 1/ /usr/lib32 (32 bits only)