diff mbox series

[1/1] package/python-esptool: fix zlib module for python3

Message ID 20210117112145.2239056-1-bernd.kuhls@t-online.de
State Accepted
Headers show
Series [1/1] package/python-esptool: fix zlib module for python3 | expand

Commit Message

Bernd Kuhls Jan. 17, 2021, 11:21 a.m. UTC
Fixes config with BR2_PACKAGE_PYTHON3=y

WARNING: unmet direct dependencies detected for BR2_PACKAGE_PYTHON_ZLIB
  Depends on [n]: BR2_PACKAGE_PYTHON [=n]
  Selected by [y]:
  - BR2_PACKAGE_PYTHON_ESPTOOL [=y] && (BR2_PACKAGE_PYTHON [=n] || BR2_PACKAGE_PYTHON3 [=y])

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/python-esptool/Config.in | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Thomas Petazzoni Jan. 17, 2021, 2:26 p.m. UTC | #1
On Sun, 17 Jan 2021 12:21:45 +0100
Bernd Kuhls <bernd.kuhls@t-online.de> wrote:

> Fixes config with BR2_PACKAGE_PYTHON3=y
> 
> WARNING: unmet direct dependencies detected for BR2_PACKAGE_PYTHON_ZLIB
>   Depends on [n]: BR2_PACKAGE_PYTHON [=n]
>   Selected by [y]:
>   - BR2_PACKAGE_PYTHON_ESPTOOL [=y] && (BR2_PACKAGE_PYTHON [=n] || BR2_PACKAGE_PYTHON3 [=y])
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/python-esptool/Config.in | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)

I wonder how I didn't spot that during the review/merge of this patch.
Anyway, thanks a lot for fixing this! Applied.

Thomas
diff mbox series

Patch

diff --git a/package/python-esptool/Config.in b/package/python-esptool/Config.in
index 7d3579abdc..570f9aa42f 100644
--- a/package/python-esptool/Config.in
+++ b/package/python-esptool/Config.in
@@ -3,7 +3,8 @@  config BR2_PACKAGE_PYTHON_ESPTOOL
 	select BR2_PACKAGE_PYTHON_ECDSA # runtime
 	select BR2_PACKAGE_PYTHON_PYAES # runtime
 	select BR2_PACKAGE_PYTHON_SERIAL # runtime
-	select BR2_PACKAGE_PYTHON_ZLIB # runtime
+	select BR2_PACKAGE_PYTHON_ZLIB if BR2_PACKAGE_PYTHON
+	select BR2_PACKAGE_PYTHON3_ZLIB if BR2_PACKAGE_PYTHON3
 	help
 	  A serial utility to communicate & flash code to Espressif
 	  ESP8266 & ESP32 chips.