diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2019-05-12 15:40:04 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2019-05-12 23:45:39 +0200 |
commit | 9d3075e60794e5e92a75cf1691ea4125fbdb5b98 (patch) | |
tree | 60aa597e3536b8518936006d7a6dfb8c72ce4011 /bin | |
parent | 51387dc280dadf7a29d215a72d2d0026451d2be6 (diff) |
check module include prefix correctly in update_pch
Change-Id: I3417f80621584553041eeb504d35cb4241a19b61
Reviewed-on: https://gerrit.libreoffice.org/72203
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/update_pch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/update_pch b/bin/update_pch index 587cd2cd8bfb..9af484c2d8bd 100755 --- a/bin/update_pch +++ b/bin/update_pch @@ -486,7 +486,7 @@ def sort_by_category(list, root, module, filter_local): sys.append(i) elif '<boost/' in i: boo.append(i) - elif '<osl' in i or '<rtl' in i or '<sal' in i or '<vcl' in i: + elif '<osl/' in i or '<rtl/' in i or '<sal/' in i or '<vcl/' in i: cor.append(i) elif prefix in i or not '/' in i: mod.append(i) |