diff options
author | Ross Burton <ross.burton@intel.com> | 2017-10-31 23:32:41 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-11-05 13:54:46 +0000 |
commit | f16eac28d909bc6570d3587a2f4ac26ae0dc6048 (patch) | |
tree | a3fa8965f02c41ecf21169d4c5f731d48d2fe9d4 | |
parent | 1e976a0bf7f94694892005944f8b8fc5d895ab31 (diff) | |
download | openembedded-core-f16eac28d909bc6570d3587a2f4ac26ae0dc6048.tar.gz openembedded-core-f16eac28d909bc6570d3587a2f4ac26ae0dc6048.tar.bz2 openembedded-core-f16eac28d909bc6570d3587a2f4ac26ae0dc6048.zip |
python3: remove obsolete db dependency
The bsddb module was removed in Python 3 and the dbm module doesn't support
Berkeley DB as an option, so this build dependency can be removed.
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-devtools/python/python3_3.5.3.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python3_3.5.3.bb b/meta/recipes-devtools/python/python3_3.5.3.bb index 13df12fe56..281a65f784 100644 --- a/meta/recipes-devtools/python/python3_3.5.3.bb +++ b/meta/recipes-devtools/python/python3_3.5.3.bb @@ -1,6 +1,6 @@ require recipes-devtools/python/python.inc -DEPENDS = "python3-native libffi bzip2 db gdbm openssl readline sqlite3 zlib virtual/libintl xz" +DEPENDS = "python3-native libffi bzip2 gdbm openssl readline sqlite3 zlib virtual/libintl xz" PR = "${INC_PR}.0" PYTHON_MAJMIN = "3.5" PYTHON_BINABI= "${PYTHON_MAJMIN}m" |