Re: [PATCH] devtools: fix symbols check

2022-03-08 Thread Liang Ma
On Tue, Mar 08, 2022 at 11:05:49PM +0100, Thomas Monjalon wrote: > 08/03/2022 22:27, Liang Ma: > > On Tue, Mar 08, 2022 at 10:18:59PM +0100, Thomas Monjalon wrote: > > > In some environments, the check of local symbols catch-all > > > was failing. Note: this script is called during the build. > > >

Re: [PATCH] devtools: fix symbols check

2022-03-08 Thread Thomas Monjalon
08/03/2022 22:27, Liang Ma: > On Tue, Mar 08, 2022 at 10:18:59PM +0100, Thomas Monjalon wrote: > > In some environments, the check of local symbols catch-all > > was failing. Note: this script is called during the build. > > > > The reason is that grep returns an error if nothing is found. > > The

Re: [PATCH] devtools: fix symbols check

2022-03-08 Thread Liang Ma
On Tue, Mar 08, 2022 at 10:18:59PM +0100, Thomas Monjalon wrote: > In some environments, the check of local symbols catch-all > was failing. Note: this script is called during the build. > > The reason is that grep returns an error if nothing is found. > The option -e of the shell script makes thi

Re: [PATCH] devtools: fix symbols check

2022-03-08 Thread Thomas Monjalon
08/03/2022 22:18, Thomas Monjalon: > In some environments, the check of local symbols catch-all > was failing. Note: this script is called during the build. > > The reason is that grep returns an error if nothing is found. > The option -e of the shell script makes this error fatal. > It is not alw

[PATCH] devtools: fix symbols check

2022-03-08 Thread Thomas Monjalon
In some environments, the check of local symbols catch-all was failing. Note: this script is called during the build. The reason is that grep returns an error if nothing is found. The option -e of the shell script makes this error fatal. It is not always fatal because the grep is in a command subs