From 2b55502aad500d70256a6e92bec4d0e1258df482 Mon Sep 17 00:00:00 2001 From: Samuli Piippo Date: Wed, 29 Nov 2017 16:21:31 +0200 Subject: prebuild-python: get complete python modules package The prebuild package used by QtCreator did not contain all the necessary python modules needed by gdb. Get complete package from python.org. Also make sure those are located by both python.exe and gdb. We still need the original package to provide all the development files not included in the embeddable zip file. Task-number: QTBUG-64855 Change-Id: I109eea70390560e76a668996dfff5bf03424765b Reviewed-by: Mikko Gronoff --- recipes/python/nativesdk-prebuild-python.inc | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'recipes/python/nativesdk-prebuild-python.inc') diff --git a/recipes/python/nativesdk-prebuild-python.inc b/recipes/python/nativesdk-prebuild-python.inc index 71e8e72..3d8c083 100644 --- a/recipes/python/nativesdk-prebuild-python.inc +++ b/recipes/python/nativesdk-prebuild-python.inc @@ -33,8 +33,6 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=4b8a9367e6bb2acb6f26dc08654f6ee5" do_unpack[depends] += "p7zip-native:do_populate_sysroot" -DEPENDS = "unzip-native" - inherit bin_package nativesdk python3-dir PV = "3.5.2" @@ -51,7 +49,5 @@ do_install() { install -d ${D}${bindir} install -m 0644 ${S}/python.exe ${D}${bindir} install -m 0644 ${S}/python35.dll ${D}${bindir} - - install -d ${D}${libdir}/${PYTHON_DIR} - unzip ${S}/python35.zip -d ${D}${libdir}/${PYTHON_DIR} + install -m 0644 ${S}/python35.zip ${D}${bindir} } -- cgit v1.2.3-54-g00ecf