X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=generateexportedsymbols.awk;h=1d9b200d2361525df0da2437c7595e6dd0cdf0d2;hb=3d7bcd205d6ea0ddb185a53b28ff497c9265c771;hp=19312c381eab293e4e55ba7f0a9116d4e75689a4;hpb=c3acc3c71f7344d90b7fc186d6c26884467beadc;p=platform%2Fupstream%2Fcoreclr.git diff --git a/generateexportedsymbols.awk b/generateexportedsymbols.awk index 19312c3..1d9b200 100644 --- a/generateexportedsymbols.awk +++ b/generateexportedsymbols.awk @@ -2,5 +2,10 @@ # Remove the CR character in case the sources are mapped from # a Windows share and contain CRLF line endings gsub(/\r/,"", $0); - print "_" $0; + + # Skip empty lines and comment lines starting with semicolon + if (NF && !match($0, /^[:space:]*;/)) + { + print "_" $0; + } }