On Mon, 18 May 2026 at 04:37, Chen Qi via lists.openembedded.org
<[email protected]> wrote:
> And in Yocto, we can't set variable like this:
> VAR1 = r"abc"
> This will result in parsing error.
>
> I'm quite confused about this and any help is quite appreciated.

You don't need to change bitbake variables. The issue is in the python
function inside the newly added class, where you need to correct the
string literals:

    return '\.'.join(stable_parts)

should be

    return r'\.'.join(stable_parts)

Alex
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#237193): 
https://lists.openembedded.org/g/openembedded-core/message/237193
Mute This Topic: https://lists.openembedded.org/mt/119293054/21656
Group Owner: [email protected]
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to