mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-09 10:35:27 +00:00
Fix regexp detection
In a case exprssion, `|` separates patterns so it needs to be quoted. Also `\` was not actually part of the set since it was quoting another character. Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
b7bb068b84
commit
c5714bb4ea
|
@ -862,7 +862,7 @@ need_grep=
|
||||||
case "$FILTER" in
|
case "$FILTER" in
|
||||||
'^$') simple_filter=;;
|
'^$') simple_filter=;;
|
||||||
'.*') simple_filter='*';;
|
'.*') simple_filter='*';;
|
||||||
*[][\$^+*?{|}]*) # Regexp special characters (other than .), we need grep
|
*[][$+*?\\^{\|}]*) # Regexp special characters (other than .), we need grep
|
||||||
need_grep=1;;
|
need_grep=1;;
|
||||||
*) # No regexp or shell-pattern special character
|
*) # No regexp or shell-pattern special character
|
||||||
simple_filter="*$FILTER*";;
|
simple_filter="*$FILTER*";;
|
||||||
|
@ -870,7 +870,7 @@ esac
|
||||||
case "$EXCLUDE" in
|
case "$EXCLUDE" in
|
||||||
'^$') simple_exclude=;;
|
'^$') simple_exclude=;;
|
||||||
'.*') simple_exclude='*';;
|
'.*') simple_exclude='*';;
|
||||||
*[][\$^+*?{|}]*) # Regexp special characters (other than .), we need grep
|
*[][$+*?\\^{\|}]*) # Regexp special characters (other than .), we need grep
|
||||||
need_grep=1;;
|
need_grep=1;;
|
||||||
*) # No regexp or shell-pattern special character
|
*) # No regexp or shell-pattern special character
|
||||||
simple_exclude="*$EXCLUDE*";;
|
simple_exclude="*$EXCLUDE*";;
|
||||||
|
|
Loading…
Reference in a new issue