From 7b0074b79b75fad0cd511fded50aafc60c2dfec5 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 6 Apr 2018 10:44:20 +0100 Subject: 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. Signed-off-by: Richard Purdie --- meta/recipes-devtools/python/python3/create_manifest3.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'meta/recipes-devtools/python/python3/create_manifest3.py') 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 -- cgit v1.2.3-54-g00ecf