blob: 5a6cfc9572cc31872495b85e24e21c7030b4e199 [file] [log] [blame]
Patrick Williams2390b1b2022-11-03 13:47:49 -05001From 627b8fe6b3c11e8bb1bb1ad1d6b816b79b8dd2ce Mon Sep 17 00:00:00 2001
Brad Bishop19323692019-04-05 15:28:33 -04002From: Andrei Gherzan <andrei@gherzan.ro>
3Date: Mon, 28 Jan 2019 15:57:54 +0000
4Subject: [PATCH] _tkinter module needs tk module along with tcl. tk is not yet
5 integrated in yocto so we skip the check for this module. Avoid a warning by
6 not adding this module to missing variable.
Patrick Williamsc124f4f2015-09-15 14:41:29 -05007
8Upstream-Status: Inappropriate [distribution]
9
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050010Also simply disable the tk module since its not in DEPENDS.
Patrick Williamsc124f4f2015-09-15 14:41:29 -050011Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
Brad Bishop19323692019-04-05 15:28:33 -040012---
Patrick Williams2390b1b2022-11-03 13:47:49 -050013 setup.py | 1 -
14 1 file changed, 1 deletion(-)
Brad Bishop19323692019-04-05 15:28:33 -040015
16diff --git a/setup.py b/setup.py
Patrick Williams2390b1b2022-11-03 13:47:49 -050017index 7555dcd..f29ac86 100644
Brad Bishop19323692019-04-05 15:28:33 -040018--- a/setup.py
19+++ b/setup.py
Patrick Williams2390b1b2022-11-03 13:47:49 -050020@@ -1364,7 +1364,6 @@ class PyBuildExt(build_ext):
Andrew Geissler82c905d2020-04-13 13:39:40 -050021 self.detect_decimal()
22 self.detect_ctypes()
23 self.detect_multiprocessing()
Patrick Williams2390b1b2022-11-03 13:47:49 -050024- self.detect_tkinter()
Andrew Geissler82c905d2020-04-13 13:39:40 -050025 self.detect_uuid()
Brad Bishop316dfdd2018-06-25 12:45:53 -040026
Patrick Williams2390b1b2022-11-03 13:47:49 -050027 # Uncomment the next line if you want to play with xxmodule.c
28--
292.30.2
30