From a33f01a2df6f4c0f03f8a0f0c4b100d8ce25bac2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sat, 11 Oct 2014 14:05:11 +0200 Subject: [PATCH] daca2: skip wxwidgets for now to avoid hang --- tools/daca2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/daca2.py b/tools/daca2.py index 2b6bdd266..3f411cae2 100644 --- a/tools/daca2.py +++ b/tools/daca2.py @@ -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()