diff options
Diffstat (limited to 'bin/update_pch')
-rwxr-xr-x | bin/update_pch | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/update_pch b/bin/update_pch index d72509007e28..6641f1584055 100755 --- a/bin/update_pch +++ b/bin/update_pch @@ -512,6 +512,8 @@ def fixup(includes, module): except: fixes.append(inc) + append('sal/config.h') + if module == 'basctl': if 'basslots.hxx' in includes: append('sfx2/msg.hxx') @@ -535,6 +537,8 @@ def sort_by_category(list, root, module, filter_local): prefix = '<' + module + '/' for i in list: + if 'sal/config.h' in i: + continue # added unconditionally in fixup if is_c_runtime(i, root, module): sys.append(i) elif '<boost/' in i: |