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 5d288d286e.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2018-04-06 10:44:20 +01:00
parent d5664c3ad4
commit 7b0074b79b
2 changed files with 10 additions and 15 deletions

View File

@@ -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