From a892e6eddc9642ad40b297ce6522188c50eceef5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Fri, 12 Feb 2016 12:08:39 +0100 Subject: [PATCH] daca2: do not skip boost --- tools/daca2.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/daca2.py b/tools/daca2.py index 05e59326b..2d7a9f063 100644 --- a/tools/daca2.py +++ b/tools/daca2.py @@ -149,11 +149,10 @@ def scanarchive(filepath, jobs): # # List of skipped packages - which trigger known yet unresolved problems with cppcheck. # The issues on trac (http://trac.cppcheck.net) are given for reference -# boost #3654 (?) # insight#5184 # - if filename[:5] == 'boost' or filename[:7] == 'insight': + if filename[:7] == 'insight': results = open('results.txt', 'at') results.write('fixme: skipped package to avoid hang\n') results.close()