summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/update_pch.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/update_pch.sh b/bin/update_pch.sh
index 4d9456969d3b..bfd86c5b5fa1 100755
--- a/bin/update_pch.sh
+++ b/bin/update_pch.sh
@@ -131,10 +131,13 @@ function filter_ignore()
# - sores.hxx provides BMP_PLUGIN, which is redefined
# - some sources play ugly #define tricks with editeng/eeitemid.hxx
# - jerror.h and jpeglib.h are not self-contained
+# - service1.hxx/service2.hxx are inside comments in frameworks/
grep -e '\.h[">]$' -e '\.hpp[">]$' -e '\.hdl[">]$' -e '\.hxx[">]$' -e '^[^\.]*>$' | \
grep -v -F -e '#include "gperffasttoken.hxx"' | \
grep -v -F -e '#include <svtools/sores.hxx>' | \
grep -v -F -e '#include <editeng/eeitemid.hxx>' | \
+ grep -v -F -e '#include <service1.hxx>' | \
+ grep -v -F -e '#include <service2.hxx>' | \
grep -v -F -e '#include "jerror.h"' | \
grep -v -F -e '#include "jpeglib.h"'
)