Re: [PATCH v3 1/2] binman: Do not pollute source tree when build with `make O=...`

2021-12-28 Thread Simon Glass
Hi Andy, On Thu, 23 Dec 2021 at 02:07, Andy Shevchenko wrote: > > On Thu, Dec 23, 2021 at 7:08 AM Simon Glass wrote: > > On Tue, 14 Dec 2021 at 17:33, Simon Glass wrote: > > > > > > Importing libraries in Python caches the bytecode by default. > > > Since we run scripts in source tree it

Re: [PATCH v3 1/2] binman: Do not pollute source tree when build with `make O=...`

2021-12-23 Thread Andy Shevchenko
On Thu, Dec 23, 2021 at 7:08 AM Simon Glass wrote: > On Tue, 14 Dec 2021 at 17:33, Simon Glass wrote: > > > > Importing libraries in Python caches the bytecode by default. > > Since we run scripts in source tree it ignores the current directory > > settings, which is $(srctree), and creates

Re: [PATCH v3 1/2] binman: Do not pollute source tree when build with `make O=...`

2021-12-22 Thread Simon Glass
Hi Andy, On Tue, 14 Dec 2021 at 17:33, Simon Glass wrote: > > Importing libraries in Python caches the bytecode by default. > Since we run scripts in source tree it ignores the current directory > settings, which is $(srctree), and creates cache just in the middle > of the source tree. Move

Re: [PATCH v3 1/2] binman: Do not pollute source tree when build with `make O=...`

2021-12-14 Thread Simon Glass
Importing libraries in Python caches the bytecode by default. Since we run scripts in source tree it ignores the current directory settings, which is $(srctree), and creates cache just in the middle of the source tree. Move cache to the current directory. Signed-off-by: Andy Shevchenko --- v3:

[PATCH v3 1/2] binman: Do not pollute source tree when build with `make O=...`

2021-12-06 Thread Andy Shevchenko
Importing libraries in Python caches the bytecode by default. Since we run scripts in source tree it ignores the current directory settings, which is $(srctree), and creates cache just in the middle of the source tree. Move cache to the current directory. Signed-off-by: Andy Shevchenko --- v3: