Bump version to 6.4.7.2.M8
[LibreOffice.git] / solenv / gbuild / platform / filter-sourceName.awk
blobd55e2707d51bb904f23b1c6049d548b2fa010761
1 #!/usr/bin/gawk -f
2 # -*- tab-width: 4; indent-tabs-mode: t -*-
4 # This file is part of the LibreOffice project.
6 # This Source Code Form is subject to the terms of the Mozilla Public
7 # License, v. 2.0. If a copy of the MPL was not distributed with this
8 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
11 # Filter out the "sourcefile.cxx" message printed by cl.exe,
12 # as there is no way to disable it. This file is used
13 # in place of filter-showIncludes.awk (which does the same)
14 # when --disable-dependency-tracking is used.
16 BEGIN {
17 firstline = 1
21 if (firstline) {
22 # ignore
23 } else {
24 # because MSVC stupidly prints errors on stdout, it's
25 # necessary to forward everything that isn't matched by the pattern
26 # so users get to see them.
27 print $0 > "/dev/stderr"
29 firstline = 0
32 # vim: set noet sw=4 ts=4: