blob: 184540e794cfdbee77bd4a8d2c18fe2db6c784e1 [file] [log] [blame]
Andrew Geissler82c905d2020-04-13 13:39:40 -05001From ba7202700578d435b07cfdfb7b57e83185752800 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 Geissler82c905d2020-04-13 13:39:40 -050018index ab18ff0..7691258 100644
Brad Bishop19323692019-04-05 15:28:33 -040019--- a/setup.py
20+++ b/setup.py
Andrew Geissler82c905d2020-04-13 13:39:40 -050021@@ -1706,8 +1706,8 @@ class PyBuildExt(build_ext):
22 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