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:44:50 +0100
commit7b0074b79b75fad0cd511fded50aafc60c2dfec5 (patch)
tree42787ec2a04520530260409e09b19242b75f3e2d /meta/recipes-devtools/python/python3/create_manifest3.py
parentd5664c3ad4e038c548dda196e03490d1afdda2f2 (diff)
downloadpoky-7b0074b79b75fad0cd511fded50aafc60c2dfec5.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. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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:
189 # Ignore folders, since we don't import those, difficult to handle multilib 189 # Ignore folders, since we don't import those, difficult to handle multilib
190 if isFolder(value): 190 if isFolder(value):
191 # Pass folders directly 191 # Pass folders directly
192 if isCached(value): 192 new_manifest[key]['files'].append(value)
193 new_manifest[key]['cached'].append(value)
194 else:
195 new_manifest[key]['files'].append(value)
196 # Ignore binaries, since we don't import those 193 # Ignore binaries, since we don't import those
197 if '${bindir}' in value: 194 if '${bindir}' in value:
198 # Pass it directly to the new manifest data structure 195 # Pass it directly to the new manifest data structure