diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-03-09 10:10:57 +0100 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2017-03-09 10:08:11 +0000 |
commit | 77779166569da389de44075b3d03413b353046a4 (patch) | |
tree | 9b03e3b84395a8917f85fb85eb221580b62698d1 | |
parent | c10b0ff860d1c2743175b02863c409e0fe277fb8 (diff) |
Remove stray CR from input
...that remained there with recent Cygwin/Bash version, which apparently had
changes to their Unix-vs.-DOS line end handling
Change-Id: Ib4c7c924362f9e93066e544ed5214fe589aa5336
Reviewed-on: https://gerrit.libreoffice.org/34990
Reviewed-by: Tor Lillqvist <tml@collabora.com>
Tested-by: Tor Lillqvist <tml@collabora.com>
-rwxr-xr-x | solenv/gbuild/platform/filter-showIncludes.awk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/solenv/gbuild/platform/filter-showIncludes.awk b/solenv/gbuild/platform/filter-showIncludes.awk index 21a458521308..6ec13e2fdb4c 100755 --- a/solenv/gbuild/platform/filter-showIncludes.awk +++ b/solenv/gbuild/platform/filter-showIncludes.awk @@ -40,6 +40,7 @@ BEGIN { } { + sub(/\r$/, "") sub(/^ */, "") if (index($0, showincludes_prefix) == 1) { $0 = substr($0, length(showincludes_prefix) + 1) |