All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/tvheadend: fix python3 detection
@ 2021-09-05  6:50 Bernd Kuhls
  2021-09-05 13:55 ` Thomas Petazzoni
  2021-09-11 20:45 ` Arnout Vandecappelle
  0 siblings, 2 replies; 4+ messages in thread
From: Bernd Kuhls @ 2021-09-05  6:50 UTC (permalink / raw)
  To: buildroot; +Cc: Yann E . MORIN

Fixes:
http://autobuild.buildroot.net/results/101/101d1caa355c2d7ee1762b394c1bf4e29350bd06//

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/tvheadend/tvheadend.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/tvheadend/tvheadend.mk b/package/tvheadend/tvheadend.mk
index cd8fedf1f0..6000e82a6f 100644
--- a/package/tvheadend/tvheadend.mk
+++ b/package/tvheadend/tvheadend.mk
@@ -154,7 +154,7 @@ define TVHEADEND_CONFIGURE_CMDS
 			--arch="$(ARCH)" \
 			--cpu="$(GCC_TARGET_CPU)" \
 			--nowerror \
-			--python="$(HOST_DIR)/bin/python" \
+			--python="$(HOST_DIR)/bin/python3" \
 			--enable-dvbscan \
 			--enable-bundle \
 			--enable-pngquant \
-- 
2.30.2

_______________________________________________
buildroot mailing list
buildroot@lists.buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/tvheadend: fix python3 detection
  2021-09-05  6:50 [Buildroot] [PATCH 1/1] package/tvheadend: fix python3 detection Bernd Kuhls
@ 2021-09-05 13:55 ` Thomas Petazzoni
  2021-09-11 20:45 ` Arnout Vandecappelle
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2021-09-05 13:55 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: Yann E . MORIN, buildroot

Hello Bernd,

On Sun,  5 Sep 2021 08:50:36 +0200
Bernd Kuhls <bernd.kuhls@t-online.de> wrote:

> Fixes:
> http://autobuild.buildroot.net/results/101/101d1caa355c2d7ee1762b394c1bf4e29350bd06//
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Is this only for master? Or also applicable to the maintenance
branches? Since when does the problem occur?

Thanks!

Thomas
-- 
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@lists.buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/tvheadend: fix python3 detection
  2021-09-05  6:50 [Buildroot] [PATCH 1/1] package/tvheadend: fix python3 detection Bernd Kuhls
  2021-09-05 13:55 ` Thomas Petazzoni
@ 2021-09-11 20:45 ` Arnout Vandecappelle
  2021-09-13 17:45   ` Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Arnout Vandecappelle @ 2021-09-11 20:45 UTC (permalink / raw)
  To: Bernd Kuhls, buildroot; +Cc: Yann E . MORIN, Thomas Petazzoni



On 05/09/2021 08:50, Bernd Kuhls wrote:
> Fixes:
> http://autobuild.buildroot.net/results/101/101d1caa355c2d7ee1762b394c1bf4e29350bd06//
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

 Applied to master, thanks.

 To answer Thomas: it's since commit 37f75b756182dd17871d1cd9e8bca83f326de690
which is only on master. I should have put that in the commit message I realise
now, but already pushed...

 Regards,
 Arnout

> ---
>  package/tvheadend/tvheadend.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/tvheadend/tvheadend.mk b/package/tvheadend/tvheadend.mk
> index cd8fedf1f0..6000e82a6f 100644
> --- a/package/tvheadend/tvheadend.mk
> +++ b/package/tvheadend/tvheadend.mk
> @@ -154,7 +154,7 @@ define TVHEADEND_CONFIGURE_CMDS
>  			--arch="$(ARCH)" \
>  			--cpu="$(GCC_TARGET_CPU)" \
>  			--nowerror \
> -			--python="$(HOST_DIR)/bin/python" \
> +			--python="$(HOST_DIR)/bin/python3" \
>  			--enable-dvbscan \
>  			--enable-bundle \
>  			--enable-pngquant \
> 
_______________________________________________
buildroot mailing list
buildroot@lists.buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/tvheadend: fix python3 detection
  2021-09-11 20:45 ` Arnout Vandecappelle
@ 2021-09-13 17:45   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2021-09-13 17:45 UTC (permalink / raw)
  To: Arnout Vandecappelle
  Cc: Bernd Kuhls, Yann E . MORIN, Thomas Petazzoni, buildroot

>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:

 > On 05/09/2021 08:50, Bernd Kuhls wrote:
 >> Fixes:
 >> http://autobuild.buildroot.net/results/101/101d1caa355c2d7ee1762b394c1bf4e29350bd06//
 >> 
 >> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

 >  Applied to master, thanks.

 >  To answer Thomas: it's since commit 37f75b756182dd17871d1cd9e8bca83f326de690
 > which is only on master. I should have put that in the commit message I realise
 > now, but already pushed...

A similar patch is arguably needed for the stable branches, as we there
do:

TVHEADEND_DEPENDENCIES = \
  $(if $(BR2_PACKAGE_PYTHON3),host-python3,host-python)

But then hardcode --python="$(HOST_DIR)/bin/python"

Bernd, care to send a fix for that?

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@lists.buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-09-14 18:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-05  6:50 [Buildroot] [PATCH 1/1] package/tvheadend: fix python3 detection Bernd Kuhls
2021-09-05 13:55 ` Thomas Petazzoni
2021-09-11 20:45 ` Arnout Vandecappelle
2021-09-13 17:45   ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.