[PATCH 8/9] docker: Fix LegacyKeyValueFormat warning with PYTHONPATH

Heinrich Schuchardt xypron.glpk at gmx.de
Mon Nov 4 22:24:56 CET 2024


On 11/4/24 14:39, Simon Glass wrote:
> Fix a warning due to the syntax used for PYTHONPATH:
>
>     LegacyKeyValueFormat: "ENV key=value" should be used instead of
>        legacy "ENV key value" format (line 304)
>
> Signed-off-by: Simon Glass <sjg at chromium.org>

Reviewed-by: Heinrich Schuchardt <xypron.glpk at gmx.de>

> ---
>
>   tools/docker/Dockerfile | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile
> index ae3d4685869..c42e0890897 100644
> --- a/tools/docker/Dockerfile
> +++ b/tools/docker/Dockerfile
> @@ -301,4 +301,4 @@ RUN /bin/echo -e "\nx86 = i386" >> ~/.buildman;
>
>   # Add mkbootimg tool
>   RUN git clone https://android.googlesource.com/platform/system/tools/mkbootimg /home/uboot/mkbootimg
> -ENV PYTHONPATH "${PYTHONPATH}:/home/uboot/mkbootimg"
> +ENV PYTHONPATH="${PYTHONPATH}:/home/uboot/mkbootimg"



More information about the U-Boot mailing list