Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
llext_link_helper.py: use a raw string for '\.so$' regex
Always use a "raw string" for regular expressions, otherwise the backslash is used to start Unicode escape sequences. Fixes hopefully harmless error: ``` scripts/llext_link_helper.py:38: SyntaxWarning: invalid escape sequence '\.' p = re.compile('(^lib|\.so$)') ``` Signed-off-by: Marc Herbert <marc.herbert@intel.com>
- Loading branch information