Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/mesa-demo: remove duplicate osmesa option
@ 2018-02-12 21:59 Audrey Motheron
  2018-02-12 23:51 ` Adrian Perez de Castro
  2018-02-13 21:55 ` Thomas Petazzoni
  0 siblings, 2 replies; 4+ messages in thread
From: Audrey Motheron @ 2018-02-12 21:59 UTC (permalink / raw)
  To: buildroot

--disable-osmesa option is unconditionally added to CONF_OPTS
even if --enable-osmesa is used latter.

Signed-off-by: Audrey Motheron <audrey.motheron@gmail.com>
---
 package/mesa3d-demos/mesa3d-demos.mk | 1 -
 1 file changed, 1 deletion(-)

diff --git a/package/mesa3d-demos/mesa3d-demos.mk b/package/mesa3d-demos/mesa3d-demos.mk
index cbc15c3b69..9182803748 100644
--- a/package/mesa3d-demos/mesa3d-demos.mk
+++ b/package/mesa3d-demos/mesa3d-demos.mk
@@ -12,7 +12,6 @@ MESA3D_DEMOS_DEPENDENCIES = host-pkgconf
 MESA3D_DEMOS_LICENSE = MIT
 
 MESA3D_DEMOS_CONF_OPTS += \
-	--disable-osmesa \
 	--disable-gles1
 
 ifeq ($(BR2_PACKAGE_XORG7)$(BR2_PACKAGE_HAS_LIBGL),yy)
-- 
2.14.3

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] package/mesa-demo: remove duplicate osmesa option
  2018-02-12 21:59 [Buildroot] [PATCH] package/mesa-demo: remove duplicate osmesa option Audrey Motheron
@ 2018-02-12 23:51 ` Adrian Perez de Castro
  2018-02-13 21:55   ` Thomas Petazzoni
  2018-02-13 21:55 ` Thomas Petazzoni
  1 sibling, 1 reply; 4+ messages in thread
From: Adrian Perez de Castro @ 2018-02-12 23:51 UTC (permalink / raw)
  To: buildroot

Hello,

Thanks for the patch, indeed the option was being duplicated! Just one small
comment: usually the commit summary line has only the package name, without
the ?package/? prefix, and in this case the package name is ?mesa-demos?,
so the first line of the commit message should be.

On Mon, 12 Feb 2018 22:59:31 +0100, Audrey Motheron <audrey.motheron@gmail.com> wrote:
> --disable-osmesa option is unconditionally added to CONF_OPTS
> even if --enable-osmesa is used latter.
> 
> Signed-off-by: Audrey Motheron <audrey.motheron@gmail.com>
> ---
>  package/mesa3d-demos/mesa3d-demos.mk | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/package/mesa3d-demos/mesa3d-demos.mk b/package/mesa3d-demos/mesa3d-demos.mk
> index cbc15c3b69..9182803748 100644
> --- a/package/mesa3d-demos/mesa3d-demos.mk
> +++ b/package/mesa3d-demos/mesa3d-demos.mk
> @@ -12,7 +12,6 @@ MESA3D_DEMOS_DEPENDENCIES = host-pkgconf
>  MESA3D_DEMOS_LICENSE = MIT
>  
>  MESA3D_DEMOS_CONF_OPTS += \
> -	--disable-osmesa \
>  	--disable-gles1
>  
>  ifeq ($(BR2_PACKAGE_XORG7)$(BR2_PACKAGE_HAS_LIBGL),yy)
> -- 
> 2.14.3

Reviewed-by: Adrian Perez de Castro <aperez@igalia.com>


--
 Adri?n ?
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 195 bytes
Desc: not available
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20180212/95c882e4/attachment.asc>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] package/mesa-demo: remove duplicate osmesa option
  2018-02-12 23:51 ` Adrian Perez de Castro
@ 2018-02-13 21:55   ` Thomas Petazzoni
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2018-02-13 21:55 UTC (permalink / raw)
  To: buildroot

Hello,

On Mon, 12 Feb 2018 23:51:12 +0000, Adrian Perez de Castro wrote:
> Hello,
> 
> Thanks for the patch, indeed the option was being duplicated! Just one small
> comment: usually the commit summary line has only the package name, without
> the ?package/? prefix, and in this case the package name is ?mesa-demos?,

Actually the package name is mesa3d-demos :-)

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
http://bootlin.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] package/mesa-demo: remove duplicate osmesa option
  2018-02-12 21:59 [Buildroot] [PATCH] package/mesa-demo: remove duplicate osmesa option Audrey Motheron
  2018-02-12 23:51 ` Adrian Perez de Castro
@ 2018-02-13 21:55 ` Thomas Petazzoni
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2018-02-13 21:55 UTC (permalink / raw)
  To: buildroot

Hello,

On Mon, 12 Feb 2018 22:59:31 +0100, Audrey Motheron wrote:
> --disable-osmesa option is unconditionally added to CONF_OPTS
> even if --enable-osmesa is used latter.
> 
> Signed-off-by: Audrey Motheron <audrey.motheron@gmail.com>
> ---
>  package/mesa3d-demos/mesa3d-demos.mk | 1 -
>  1 file changed, 1 deletion(-)

As Adrian said, the commit title should match the package name:
mesa3d-demos. I've fixed that up and applied to master. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
http://bootlin.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-02-13 21:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-12 21:59 [Buildroot] [PATCH] package/mesa-demo: remove duplicate osmesa option Audrey Motheron
2018-02-12 23:51 ` Adrian Perez de Castro
2018-02-13 21:55   ` Thomas Petazzoni
2018-02-13 21:55 ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox