diff options
Diffstat (limited to 'meta/recipes-devtools/python/python3/create_manifest3.py')
-rw-r--r-- | meta/recipes-devtools/python/python3/create_manifest3.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python3/create_manifest3.py b/meta/recipes-devtools/python/python3/create_manifest3.py index ead27e9fcc..43e95ce96b 100644 --- a/meta/recipes-devtools/python/python3/create_manifest3.py +++ b/meta/recipes-devtools/python/python3/create_manifest3.py | |||
@@ -186,7 +186,10 @@ for key in old_manifest: | |||
186 | # Ignore folders, since we don't import those, difficult to handle multilib | 186 | # Ignore folders, since we don't import those, difficult to handle multilib |
187 | if isFolder(value): | 187 | if isFolder(value): |
188 | # Pass folders directly | 188 | # Pass folders directly |
189 | new_manifest[key]['files'].append(value) | 189 | if isCached(value): |
190 | new_manifest[key]['cached'].append(value) | ||
191 | else: | ||
192 | new_manifest[key]['files'].append(value) | ||
190 | # Ignore binaries, since we don't import those | 193 | # Ignore binaries, since we don't import those |
191 | if '${bindir}' in value: | 194 | if '${bindir}' in value: |
192 | # Pass it directly to the new manifest data structure | 195 | # Pass it directly to the new manifest data structure |