From 663f5a14b03080db88e8434d6a7122f8db6323fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sat, 30 Nov 2013 16:16:11 +0100 Subject: [PATCH] daca2: avoid hang for iceowl package --- tools/daca2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/daca2.py b/tools/daca2.py index ade80255b..108d92bba 100644 --- a/tools/daca2.py +++ b/tools/daca2.py @@ -143,7 +143,7 @@ def scanarchive(filepath): elif filename[-4:] == '.bz2': subprocess.call(['tar', 'xjvf', filename]) - if filename[:5] == 'flite' or filename[:5] == 'boost': + if filename[:5] == 'flite' or filename[:5] == 'boost' or filename[:6] == 'iceowl': results = open('results.txt', 'at') results.write('fixme: skipped package to avoid hang\n') results.close()