On 5/18/26 12:09, Alexander Kanavin wrote:
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

Alex, thanks a lot!

Mathieu, I'll send out V6 with the above fix. Could you please help test it on autobuilder? I hope the problem would go away with this fix. But if it remains there, please let me know and I'll need to access autobuilder to do more debugging.

Regards,
Qi

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#237194): 
https://lists.openembedded.org/g/openembedded-core/message/237194
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