mirror of
https://git.yoctoproject.org/poky
synced 2026-09-13 00:49:33 +02:00
python3: Fix native compilation of gdbm module and manifest
The gdbm module wasnt being built on python3-native showing the following error during compilation: Failed to build these modules: _gdbm This patch adds the required dependency to fix the compilation problem. This issue on python3-native caused the manifest creation script to be unaware of the gdbm library, so this patch also fixes the create_manifest task for target python, and the manifest file to reflect the changes on target python as well. (From OE-Core rev: c47b54aeae5daabb458d6f7118a16257021c1822) Signed-off-by: Alejandro Hernandez <alejandr@xilinx.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
5dd24c1753
commit
2afde7e7bd
@@ -38,7 +38,7 @@ UPSTREAM_CHECK_REGEX = "[Pp]ython-(?P<pver>\d+(\.\d+)+).tar"
|
|||||||
S = "${WORKDIR}/Python-${PV}"
|
S = "${WORKDIR}/Python-${PV}"
|
||||||
|
|
||||||
EXTRANATIVEPATH += "bzip2-native"
|
EXTRANATIVEPATH += "bzip2-native"
|
||||||
DEPENDS = "openssl-native bzip2-replacement-native zlib-native readline-native sqlite3-native"
|
DEPENDS = "openssl-native bzip2-replacement-native zlib-native readline-native sqlite3-native gdbm-native"
|
||||||
|
|
||||||
inherit native
|
inherit native
|
||||||
|
|
||||||
|
|||||||
@@ -366,7 +366,8 @@
|
|||||||
"db": {
|
"db": {
|
||||||
"cached": [],
|
"cached": [],
|
||||||
"files": [
|
"files": [
|
||||||
"${libdir}/python3.5/dbm"
|
"${libdir}/python3.5/dbm",
|
||||||
|
"${libdir}/python3.5/lib-dynload/_dbm.*.so"
|
||||||
],
|
],
|
||||||
"rdepends": [
|
"rdepends": [
|
||||||
"core"
|
"core"
|
||||||
@@ -493,6 +494,16 @@
|
|||||||
],
|
],
|
||||||
"summary": "Python's fcntl interface"
|
"summary": "Python's fcntl interface"
|
||||||
},
|
},
|
||||||
|
"gdbm": {
|
||||||
|
"cached": [],
|
||||||
|
"files": [
|
||||||
|
"${libdir}/python3.5/lib-dynload/_gdbm.*.so"
|
||||||
|
],
|
||||||
|
"rdepends": [
|
||||||
|
"core"
|
||||||
|
],
|
||||||
|
"summary": "Python GNU database support"
|
||||||
|
},
|
||||||
"html": {
|
"html": {
|
||||||
"cached": [
|
"cached": [
|
||||||
"${libdir}/python3.5/__pycache__/formatter.*.pyc"
|
"${libdir}/python3.5/__pycache__/formatter.*.pyc"
|
||||||
|
|||||||
Reference in New Issue
Block a user