blob: 2de72b7199bc264b21450affbc893a4114c5f254 [file] [log] [blame]
Andrew Geissler595f6302022-01-24 19:11:47 +00001From 6a23d52c905cd1f6a5944255903ec86ea8b904bb 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>
12
Brad Bishop19323692019-04-05 15:28:33 -040013---
Andrew Geissler82c905d2020-04-13 13:39:40 -050014 setup.py | 4 ++--
15 1 file changed, 2 insertions(+), 2 deletions(-)
Brad Bishop19323692019-04-05 15:28:33 -040016
17diff --git a/setup.py b/setup.py
Andrew Geissler595f6302022-01-24 19:11:47 +000018index 11b5cf5..2be4738 100644
Brad Bishop19323692019-04-05 15:28:33 -040019--- a/setup.py
20+++ b/setup.py
Andrew Geissler595f6302022-01-24 19:11:47 +000021@@ -1895,8 +1895,8 @@ class PyBuildExt(build_ext):
Andrew Geissler82c905d2020-04-13 13:39:40 -050022 self.detect_decimal()
23 self.detect_ctypes()
24 self.detect_multiprocessing()
25- if not self.detect_tkinter():
26- self.missing.append('_tkinter')
27+# if not self.detect_tkinter():
28+# self.missing.append('_tkinter')
29 self.detect_uuid()
Brad Bishop316dfdd2018-06-25 12:45:53 -040030
Andrew Geissler82c905d2020-04-13 13:39:40 -050031 ## # Uncomment these lines if you want to play with xxmodule.c