From 1e322de8e68a50a14bb1d4be83912e1a437daf3a Mon Sep 17 00:00:00 2001 From: Marc Ferland Date: Mon, 1 May 2017 11:32:08 -0400 Subject: python-prettytable: fix files permissions Got this runtime error: IOError: [Errno 13] Permission denied: '/usr/lib/python2.7/site-packages/prettytable-0.7.2-py2.7.egg-info/PKG-INFO' After some investigation, it looks like the pypi package is the culprit as almost all the files in the tar.gz are set to 600 instead of 644. Signed-off-by: Marc Ferland Signed-off-by: Martin Jansa --- meta-python/recipes-devtools/python/python-prettytable_0.7.2.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-python/recipes-devtools/python/python-prettytable_0.7.2.bb b/meta-python/recipes-devtools/python/python-prettytable_0.7.2.bb index f63457efe5..6f4390e24c 100644 --- a/meta-python/recipes-devtools/python/python-prettytable_0.7.2.bb +++ b/meta-python/recipes-devtools/python/python-prettytable_0.7.2.bb @@ -15,7 +15,7 @@ S = "${WORKDIR}/${SRCNAME}-${PV}" inherit setuptools do_install_append() { - perm_files=`find "${D}${PYTHON_SITEPACKAGES_DIR}/" -name "top_level.txt"` + perm_files=`find "${D}${PYTHON_SITEPACKAGES_DIR}/" -name "*.txt" -o -name "PKG-INFO"` for f in $perm_files; do chmod 644 "${f}" done -- cgit 1.2.3-korg