Re: [U-Boot] [PATCH RFC] Makefile: Extend PYTHONPATH rather than overriding it

2017-11-15 Thread Tuomas Tynkkynen
Hi Simon, On 11/10/2017 07:16 AM, Simon Glass wrote: On 7 November 2017 at 09:18, Tuomas Tynkkynen wrote: Currently, if the user has compiled the libfdt Python module from dtc upstream to a non-default location, it cannot be used because the 'PYTHONPATH=tools'

Re: [U-Boot] [PATCH RFC] Makefile: Extend PYTHONPATH rather than overriding it

2017-11-09 Thread Simon Glass
On 7 November 2017 at 09:18, Tuomas Tynkkynen wrote: > Currently, if the user has compiled the libfdt Python module from dtc > upstream to a non-default location, it cannot be used because the > 'PYTHONPATH=tools' assignment wipes out the user's PYTHONPATH. > Instead,

[U-Boot] [PATCH RFC] Makefile: Extend PYTHONPATH rather than overriding it

2017-11-07 Thread Tuomas Tynkkynen
Currently, if the user has compiled the libfdt Python module from dtc upstream to a non-default location, it cannot be used because the 'PYTHONPATH=tools' assignment wipes out the user's PYTHONPATH. Instead, extend PYTHONPATH in the main Makefile instead of overriding it. Signed-off-by: Tuomas