summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python
diff options
context:
space:
mode:
authorMingli Yu <Mingli.Yu@windriver.com>2018-11-14 17:38:16 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-11-23 23:35:19 +0000
commit8b7c98e0e0ae4718ed56500f913ca886df5a883d (patch)
tree6e735cce0c2a4ae9c757eb8fcfc126db7f17ea4e /meta/recipes-devtools/python/python
parent75d2d6776b434e998c0ad7ef531ce179d1595e7d (diff)
downloadpoky-8b7c98e0e0ae4718ed56500f913ca886df5a883d.tar.gz
python: add tk support
Add support to enable tk via PACKGECONFIG. before the patch: # python Python 2.7.15 (default, Nov 8 2018, 04:53:50) [GCC 8.2.0] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import Tkinter Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib64/python2.7/lib-tk/Tkinter.py", line 39, in <module> import _tkinter # If this fails your Python may not be configured for Tk ImportError: No module named _tkinter >>> After the patch, if enable tk in PACKGECONFIG, then # python Python 2.7.15 (default, Oct 25 2018, 08:12:45) [GCC 8.2.0] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import Tkinter >>> (From OE-Core rev: 26b2702475697c123937d237e00c34eb2216b5ea) Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python')
-rw-r--r--meta/recipes-devtools/python/python/python2-manifest.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python/python2-manifest.json b/meta/recipes-devtools/python/python/python2-manifest.json
index 260fa6f80d..a9f392475c 100644
--- a/meta/recipes-devtools/python/python/python2-manifest.json
+++ b/meta/recipes-devtools/python/python/python2-manifest.json
@@ -966,6 +966,7 @@
966 "core" 966 "core"
967 ], 967 ],
968 "files": [ 968 "files": [
969 "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_tkinter.so",
969 "${libdir}/python2.7/lib-tk" 970 "${libdir}/python2.7/lib-tk"
970 ] 971 ]
971 }, 972 },
@@ -1043,4 +1044,4 @@
1043 "${libdir}/python2.7/lib-dynload/zlib.so" 1044 "${libdir}/python2.7/lib-dynload/zlib.so"
1044 ] 1045 ]
1045 } 1046 }
1046} \ No newline at end of file 1047}