includes: update script for obsolete headers check

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2015-11-20 01:12:54 +02:00
parent 41b205927a
commit 0b46e067bf

View file

@ -1,10 +1,13 @@
#!/usr/bin/python2
# a script to check for Qt4 meta-headers inclusion in source files
# a script to check for redundant fancy headers
import os, re, sys
lexceptions = ['../../dnssd/settings.h']
lexceptions = [
'../../dnssd/settings.h',
'../../plasma/version.h',
]
lall = []
for root, dirs, files in os.walk('%s/..' % os.getcwd()):