daca2: fix compilation of cppcheck

This commit is contained in:
Daniel Marjamäki 2015-11-23 11:19:44 +01:00
parent 9f41fcfbcb
commit a5149d68ab
1 changed files with 2 additions and 2 deletions

View File

@ -45,8 +45,8 @@ def daca2(foldernum):
rev = rev[:rev.find('\n')]
# compile cppcheck
subprocess.call(['nice', 'make', 'SRCDIR=build', 'CFGDIR=' + os.path.expanduser('~/cppcheck/cfg'), 'CXXFLAGS="-g -O2"', 'CPPFLAGS=-DMAXTIME=600'])
subprocess.call(['mv', 'cppcheck', os.path.expanduser('~/daca2/cppcheck-O2')])
subprocess.call(['nice', 'make', 'SRCDIR=build', 'CFGDIR=' + os.path.expanduser('~/cppcheck/cfg'), 'CXXFLAGS=-g -O2', 'CPPFLAGS=-DMAXTIME=600'])
subprocess.call(['cp', 'cppcheck', os.path.expanduser('~/daca2/cppcheck-O2')])
# run cppcheck
subprocess.call(['rm', '-rf', os.path.expanduser('~/daca2/' + folder)])