* opts.sh: Quote '+' in regex.
From-SVN: r67978
This commit is contained in:
parent
705de64c0b
commit
3ec764754d
@ -1,3 +1,7 @@
|
||||
2003-06-15 Neil Booth <neil@daikokuya.co.uk>
|
||||
|
||||
* opts.sh: Quote '+' in regex.
|
||||
|
||||
2003-06-15 Neil Booth <neil@daikokuya.co.uk>
|
||||
|
||||
* c-opts.c (lang_flags): Update for new spelling of flags.
|
||||
|
@ -48,7 +48,9 @@ ${AWK} '
|
||||
flags = " " flags " "
|
||||
result = "0"
|
||||
for (j = 0; j < n_langs; j++) {
|
||||
if (flags ~ " " langs[j] " ")
|
||||
regex = " " langs[j] " "
|
||||
gsub ( "+", "\\+", regex )
|
||||
if (flags ~ regex)
|
||||
result = result " | " macros[j]
|
||||
}
|
||||
if (flags ~ " Common ") result = result " | CL_COMMON"
|
||||
|
Loading…
Reference in New Issue
Block a user