Re: [OE-core] [PATCH] busybox: Fix excluding .debug from depmod

2023-02-14 Thread Alexandre Belloni via lists.openembedded.org
Hello, Saul sent this on Friday: https://lore.kernel.org/openembedded-core/20230210153255.2716448-1-saul.w...@windriver.com/ On 14/02/2023 16:17:34+0300, Anton Kikin wrote: > The previously added patch for excluding .debug from depmod has an > invalid expression in the condition. The strstr funct

[OE-core] [PATCH] busybox: Fix excluding .debug from depmod

2023-02-14 Thread Anton Kikin
The previously added patch for excluding .debug from depmod has an invalid expression in the condition. The strstr function returns NULL if substring is NOT found [1]. Therefore, the existing patch, on the opposite, handles only modules that have a .debug substring in the path. This commit fixes th