summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2016-03-30 14:32:52 -0700
committerJan Kotas <jkotas@microsoft.com>2016-03-30 14:32:52 -0700
commite65dcb5321a86f0d4e1cee92e2f36f8c84013904 (patch)
treea40b3e5a0f2b318646d672c7048db4d54dd2397b
parentd47a3984e4f3277337c710579407d3a5e1d94714 (diff)
downloadcoreclr-e65dcb5321a86f0d4e1cee92e2f36f8c84013904.tar.gz
coreclr-e65dcb5321a86f0d4e1cee92e2f36f8c84013904.tar.bz2
coreclr-e65dcb5321a86f0d4e1cee92e2f36f8c84013904.zip
Revert "Fix bracket expression matches a character at gawk"
-rw-r--r--generateversionscript.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/generateversionscript.awk b/generateversionscript.awk
index 168d398436..d1c294be58 100644
--- a/generateversionscript.awk
+++ b/generateversionscript.awk
@@ -8,7 +8,7 @@ BEGIN {
gsub(/\r/,"", $0);
# Skip empty lines and comment lines starting with semicolon
- if (NF && !match($0, /^[[:space:]]*;/))
+ if (NF && !match($0, /^[:space:]*;/))
{
print " " $0 ";";
}