diff mbox series

[1/1] imx-gpu-viv: add a missing backslash

Message ID 20180720091629.5723-1-laurent.hartanerot@gmail.com
State Accepted
Commit 06a5d193edb859929ac37154ef1320b7907b31b0
Headers show
Series [1/1] imx-gpu-viv: add a missing backslash | expand

Commit Message

Laurent Hartanerot July 20, 2018, 9:16 a.m. UTC
From: Laurent Hartanerot <laurent.hartanerot@atos.net>

Signed-off-by: Laurent Hartanerot <laurent.hartanerot@atos.net>
---
 package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Peter Korsgaard July 20, 2018, 9:42 a.m. UTC | #1
>>>>> "Laurent" == Laurent Hartanerot <laurent.hartanerot@gmail.com> writes:

 > From: Laurent Hartanerot <laurent.hartanerot@atos.net>
 > Signed-off-by: Laurent Hartanerot <laurent.hartanerot@atos.net>
 > ---
 >  package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk | 2 +-
 >  1 file changed, 1 insertion(+), 1 deletion(-)

 > diff --git a/package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk b/package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk
 > index 511e3b3b6c..25d25e1871 100644
 > --- a/package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk
 > +++ b/package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk
 > @@ -79,7 +79,7 @@ endif
 >  ifeq ($(IMX_GPU_VIV_LIB_TARGET),x11)
 >  define IMX_GPU_VIV_FIXUP_PKGCONFIG
 >  	for lib in egl gbm glesv1_cm glesv2 vg; do \
 > -		ln -sf $${lib}_x11.pc $(@D)/gpu-core/usr/lib/pkgconfig/$${lib}.pc
 > +		ln -sf $${lib}_x11.pc $(@D)/gpu-core/usr/lib/pkgconfig/$${lib}.pc \

A semicolon is also missing. I've changed it to do  '|| exit 1; \' like
we do elsewhere to catch failures and committed, thanks.
Thomas Petazzoni July 20, 2018, 11:16 a.m. UTC | #2
Hello,

On Fri, 20 Jul 2018 11:42:15 +0200, Peter Korsgaard wrote:
> >>>>> "Laurent" == Laurent Hartanerot <laurent.hartanerot@gmail.com> writes:  
> 
>  > From: Laurent Hartanerot <laurent.hartanerot@atos.net>
>  > Signed-off-by: Laurent Hartanerot <laurent.hartanerot@atos.net>
>  > ---
>  >  package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk | 2 +-
>  >  1 file changed, 1 insertion(+), 1 deletion(-)  
> 
>  > diff --git a/package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk b/package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk
>  > index 511e3b3b6c..25d25e1871 100644
>  > --- a/package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk
>  > +++ b/package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk
>  > @@ -79,7 +79,7 @@ endif
>  >  ifeq ($(IMX_GPU_VIV_LIB_TARGET),x11)
>  >  define IMX_GPU_VIV_FIXUP_PKGCONFIG
>  >  	for lib in egl gbm glesv1_cm glesv2 vg; do \
>  > -		ln -sf $${lib}_x11.pc $(@D)/gpu-core/usr/lib/pkgconfig/$${lib}.pc
>  > +		ln -sf $${lib}_x11.pc $(@D)/gpu-core/usr/lib/pkgconfig/$${lib}.pc \  
> 
> A semicolon is also missing. I've changed it to do  '|| exit 1; \' like
> we do elsewhere to catch failures and committed, thanks.

Actually, in this sort of case, I would prefer to use a make for loop:

	$(foreach lib,egl gbm glesv1_cm glesv2 vg, \
		ln -sf $(lib)_x11.pc $(@D)/gpu-core/usr/lib/pkgconfig/$(lib).pc
	)

make automatically aborts the loop if there's an error, and $(lib) is
more readable than $${lib}.

Best regards,

Thomas
Peter Korsgaard July 20, 2018, 11:47 a.m. UTC | #3
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@bootlin.com> writes:

Hi,

 >> A semicolon is also missing. I've changed it to do  '|| exit 1; \' like
 >> we do elsewhere to catch failures and committed, thanks.

 > Actually, in this sort of case, I would prefer to use a make for loop:

 > 	$(foreach lib,egl gbm glesv1_cm glesv2 vg, \
 > 		ln -sf $(lib)_x11.pc $(@D)/gpu-core/usr/lib/pkgconfig/$(lib).pc
 > 	)

 > make automatically aborts the loop if there's an error, and $(lib) is
 > more readable than $${lib}.

Correct. I left it like this as the file has several other shell loops.
Peter Korsgaard July 20, 2018, 9:31 p.m. UTC | #4
>>>>> "Laurent" == Laurent Hartanerot <laurent.hartanerot@gmail.com> writes:

 > From: Laurent Hartanerot <laurent.hartanerot@atos.net>
 > Signed-off-by: Laurent Hartanerot <laurent.hartanerot@atos.net>

Committed to 2018.02.x and 2018.05.x, thanks.
diff mbox series

Patch

diff --git a/package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk b/package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk
index 511e3b3b6c..25d25e1871 100644
--- a/package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk
+++ b/package/freescale-imx/imx-gpu-viv/imx-gpu-viv.mk
@@ -79,7 +79,7 @@  endif
 ifeq ($(IMX_GPU_VIV_LIB_TARGET),x11)
 define IMX_GPU_VIV_FIXUP_PKGCONFIG
 	for lib in egl gbm glesv1_cm glesv2 vg; do \
-		ln -sf $${lib}_x11.pc $(@D)/gpu-core/usr/lib/pkgconfig/$${lib}.pc
+		ln -sf $${lib}_x11.pc $(@D)/gpu-core/usr/lib/pkgconfig/$${lib}.pc \
 	done
 endef
 endif