From d06a8cddc0483be41e1cd8252fd23674f65b1f15 Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Tue, 20 May 2014 01:26:23 +0200 Subject: update_pch.sh: ignore a icu header file Change-Id: I2654933e1e6f50902be6b992767ab5caac273f9c --- bin/update_pch.sh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bin') diff --git a/bin/update_pch.sh b/bin/update_pch.sh index 241ce6c45508..6b425cb53d75 100755 --- a/bin/update_pch.sh +++ b/bin/update_pch.sh @@ -127,12 +127,14 @@ function local_file() function filter_ignore() ( # - filter out all files that are not normal headers +# - unicode/datefm.h is a icu header, clashes with DateFormat definition # - gperffasttoken.hxx is not a proper header # - 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 -e '\.h[">]$' -e '\.hpp[">]$' -e '\.hdl[">]$' -e '\.hxx[">]$' -e '^[^\.]*>$' | \ + grep -v -F -e '#include ' | \ grep -v -F -e '#include "gperffasttoken.hxx"' | \ grep -v -F -e '#include ' | \ grep -v -F -e '#include ' | \ -- cgit