Re: [PATCH 1/2] scripts/check-config.sh: fix to be compatible with BSD sed

2021-02-25 Thread Tom Rini
On Sat, Feb 13, 2021 at 11:06:31AM +0100, Roger Pau Monne wrote: > Fist use extended regexp in order to drop the '\' around the > parentheses which is not supported by BSD sed in regular mode. > > Secondly use [[:blank:]] instead of \s, as the later is a GNU > extension. > > No functional

Re: [PATCH 1/2] scripts/check-config.sh: fix to be compatible with BSD sed

2021-02-17 Thread Simon Glass
On Sat, 13 Feb 2021 at 03:06, Roger Pau Monne wrote: > > Fist use extended regexp in order to drop the '\' around the > parentheses which is not supported by BSD sed in regular mode. > > Secondly use [[:blank:]] instead of \s, as the later is a GNU > extension. > > No functional change intended.

Re: [PATCH 1/2] scripts/check-config.sh: fix to be compatible with BSD sed

2021-02-13 Thread Warner Losh
On Sat, Feb 13, 2021 at 3:06 AM Roger Pau Monne wrote: > Fist use extended regexp in order to drop the '\' around the > parentheses which is not supported by BSD sed in regular mode. > > Secondly use [[:blank:]] instead of \s, as the later is a GNU > extension. > > No functional change intended.

[PATCH 1/2] scripts/check-config.sh: fix to be compatible with BSD sed

2021-02-13 Thread Roger Pau Monne
Fist use extended regexp in order to drop the '\' around the parentheses which is not supported by BSD sed in regular mode. Secondly use [[:blank:]] instead of \s, as the later is a GNU extension. No functional change intended. Signed-off-by: Roger Pau Monné --- Cc: Masahiro Yamada Cc: Simon