donate-cpu.py: Comment out boost library detection. After next release it shall be enabled again.

This commit is contained in:
orbitcowboy 2019-01-13 20:37:41 +01:00
parent 40c172fe6f
commit c3005f08ab
1 changed files with 2 additions and 2 deletions

View File

@ -223,8 +223,8 @@ def scanPackage(workPath, cppcheck, jobs):
libraries += ' --library=zlib'
if hasInclude('temp', '<gtk/gtk.h>'):
libraries += ' --library=gtk'
if hasInclude('temp', '<boost/'):
libraries += ' --library=boost'
# if hasInclude('temp', '<boost/'):
# libraries += ' --library=boost'
options = jobs + libraries + ' -D__GCC__ --inconclusive --enable=style --platform=unix64 --template=daca2 -rp=temp temp'
cmd = 'nice ' + cppcheck + ' ' + options
print(cmd)