diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2019-10-13 10:55:02 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2019-10-14 11:07:30 +0200 |
commit | f5fa61e7f00733df3a064c297b4a31b182be05b6 (patch) | |
tree | 2b96fc83a889bda8820649adef0e8b6cb95b17ac /bin/update_pch.sh | |
parent | a77321a07695c067662885eea5369e3c821dccb0 (diff) |
add PCHs for more external libs
I think this is all external libs where it makes sense for them
to have their own PCH and be worth it. Maybe some smaller externals
can also use the common system PCH, but unfortunately many externals
use all kinds of defines that affect system headers, which is
a problem for the common system PCH.
Change-Id: I2c589ac55d93728daf3b158df110722e5f055d45
Reviewed-on: https://gerrit.libreoffice.org/80728
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'bin/update_pch.sh')
-rwxr-xr-x | bin/update_pch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/update_pch.sh b/bin/update_pch.sh index bc7742ea952e..5299242b9d7c 100755 --- a/bin/update_pch.sh +++ b/bin/update_pch.sh @@ -42,7 +42,7 @@ for x in $headers; do fi else header=$x - local update_msg=`echo $header | sed -e s%$root/%%` + update_msg=`echo $header | sed -e s%$root/%%` module=`readlink -f $header | sed -e s%$root/%% -e s%/.*%%` if [ "$module" = "pch" ]; then continue # PCH's in pch/inc/pch/ are handled manually |