[client] egl: handle \r character when processing #includes

This commit is contained in:
Quantum
2021-08-09 19:40:05 -04:00
committed by Geoffrey McRae
parent 9f4afcd944
commit c1a362f8d3
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
BEGIN { FS="\"" }
function process(line, second) {
if (line ~ /^#include[ \t]*".+"[ \t]*$/) {
if (line ~ /^#include[ \t]*".+"[ \t\r]*$/) {
while (getline < second) {
process($0, $2)
}