Re: [OE-core] [PATCH] populate_sdk_ext: Avoid copying and producing .pyc files

2021-03-26 Thread Mark Hatle
On 3/26/21 12:54 AM, Alexander Kanavin wrote: > Wait, I have to say neither reason is convincing. Pyc files are not > system-specific, they are the same on all systems. And pseudo issues should be > dealt with by fixing the issue, not working around the symptoms, no? These are pyc files that

Re: [OE-core] [PATCH] populate_sdk_ext: Avoid copying and producing .pyc files

2021-03-25 Thread Alexander Kanavin
Wait, I have to say neither reason is convincing. Pyc files are not system-specific, they are the same on all systems. And pseudo issues should be dealt with by fixing the issue, not working around the symptoms, no? Alex On Thu, 25 Mar 2021 at 23:44, Mark Hatle wrote: > Since pyc cache files

[OE-core] [PATCH] populate_sdk_ext: Avoid copying and producing .pyc files

2021-03-25 Thread Mark Hatle
Since pyc cache files are really system specific, no real reason to copy or generate them during the eSDK build process. Also generating them has the possibility of re-using inodes that pseudo may have been tracking, leading a build failure. Signed-off-by: Mark Hatle ---