summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3/create_manifest3.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2018-04-06 10:44:20 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-04-07 11:43:36 +0100
commit720249de1ebb08499b7a9ac0d1ece955cf87f8b2 (patch)
tree4ce135409e2386da98b39f78b6be6d2954cb5956 /meta/recipes-devtools/python/python3/create_manifest3.py
parent79703d83790a2973fefdb0e12e125b5f17e98cdf (diff)
downloadopenembedded-core-contrib-720249de1ebb08499b7a9ac0d1ece955cf87f8b2.tar.gz
Revert "python3: fix create_manifest to handle pycache folders"
Alejandro asked this be reverted as the patch causes more problems than it solves. This reverts commit 5d288d286e0adb221649d896c132a607ecddc490.
Diffstat (limited to 'meta/recipes-devtools/python/python3/create_manifest3.py')
-rw-r--r--meta/recipes-devtools/python/python3/create_manifest3.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/meta/recipes-devtools/python/python3/create_manifest3.py b/meta/recipes-devtools/python/python3/create_manifest3.py
index 44f3454582..2f944f9b13 100644
--- a/meta/recipes-devtools/python/python3/create_manifest3.py
+++ b/meta/recipes-devtools/python/python3/create_manifest3.py
@@ -189,10 +189,7 @@ for key in old_manifest:
# Ignore folders, since we don't import those, difficult to handle multilib
if isFolder(value):
# Pass folders directly
- if isCached(value):
- new_manifest[key]['cached'].append(value)
- else:
- new_manifest[key]['files'].append(value)
+ new_manifest[key]['files'].append(value)
# Ignore binaries, since we don't import those
if '${bindir}' in value:
# Pass it directly to the new manifest data structure