diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2020-06-30 17:58:12 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2020-07-01 11:35:08 +0200 |
commit | 3dfc6d42edfd469436ad177ad1ebc5526679aa99 (patch) | |
tree | a879d9a9156c78ea119d6d56133c2c5b292ddfd3 /bin | |
parent | 3550a459db6d633fccd5a8599b75662689d270c4 (diff) |
update Skia to chrome/m85 snapshot
Change-Id: I3af3517c9c213e0db8365aecd0a008d817ca4dcf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97592
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 8055007a3b25..00cd50681daa 100755 --- a/bin/update_pch +++ b/bin/update_pch @@ -633,7 +633,7 @@ def parse_makefile(groups, lines, lineno, lastif, ifstack): if EXCLUDE_SYSTEM and ifstack: continue file = line + '.' + suffix - if ',' in line or '(' in line or ')' in line: + if ',' in line or '(' in line or ')' in line or file.startswith('-'): #print('passing: ' + line) pass # $if() probably, or something similar else: |