daca2: skip wxwidgets for now to avoid hang

This commit is contained in:
Daniel Marjamäki 2014-10-11 14:05:11 +02:00
parent 489fc6cce7
commit a33f01a2df
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ def scanarchive(filepath):
elif filename[-4:] == '.bz2':
subprocess.call(['tar', 'xjvf', filename])
if filename[:5] == 'flite' or filename[:5] == 'boost' or filename[:6] == 'iceowl' or filename[:7] == 'insight' or filename[:8] == 'valgrind':
if filename[:5] == 'flite' or filename[:5] == 'boost' or filename[:6] == 'iceowl' or filename[:7] == 'insight' or filename[:8] == 'valgrind' or filename[:9] == 'wxwidgets':
results = open('results.txt', 'at')
results.write('fixme: skipped package to avoid hang\n')
results.close()